@@ -83,10 +83,10 @@ specified folder.
83
83
"cypress_proj_dir" : " /path/to/directory-that-contains-<cypress.json>-file" ,
84
84
"project_name" : " my first project" ,
85
85
"build_name" : " build 1" ,
86
- "npm_dependencies" : [
87
- " npm-package-you-need-to-run-tests-1" ,
88
- " npm-package-you-need-to-run-tests-2@1.0.0 "
89
- ]
86
+ "npm_dependencies" : {
87
+ "npm-package-you-need-to-run-tests-1" : " ^1.2.1 " ,
88
+ "npm-package-you-need-to-run-tests-2" : " ^7.1.6-beta.13 " ,
89
+ }
90
90
},
91
91
"connection_settings" : {
92
92
"local" : false ,
@@ -158,7 +158,7 @@ BrowserStack.
158
158
| ` cypress_proj_dir ` | Path to the folder which contains ` cypress.json ` file. | - |
159
159
| ` project_name ` | Name of your project. You'll be able to search & filter your tests on the dashboard using this. | - |
160
160
| ` build_name ` | Name of your build / CI run. You'll be able to search & filter your tests on the dashboard using this. username. | - |
161
- | ` npm_dependencies ` | A list of NPM packages to be able to run your Cypress tests. | - |
161
+ | ` npm_dependencies ` | A list of NPM packages that are required to run your Cypress tests along with their version numbers. | - |
162
162
163
163
Example:
164
164
@@ -168,10 +168,10 @@ Example:
168
168
"cypress_proj_dir" : " /path/to/directory-that-contains-<cypress.json>-file" ,
169
169
"project_name" : " my first project" ,
170
170
"build_name" : " build 1" ,
171
- "npm_dependencies" : [
172
- " npm-package-you-need-to-run-tests-1" ,
173
- " npm-package-you-need-to-run-tests-2@1.0.0 "
174
- ]
171
+ "npm_dependencies" : {
172
+ "npm-package-you-need-to-run-tests-1" : " ^1.2.1 " ,
173
+ "npm-package-you-need-to-run-tests-2" : " ^7.1.6-beta.13 " ,
174
+ }
175
175
}
176
176
}
177
177
```
0 commit comments