Skip to content

Commit b8a4625

Browse files
committed
changing cypress_dependencies to npm_dependencies
1 parent 48c544c commit b8a4625

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The following table provides a reference for all the options that can be provide
7979
| `versions` | A list of browser versions that you want to run your tests on. <br/><br/> **Example:** To run on versions 69, 67 and 65 provide `["69", "67", "65"]` | Right now edge 80 and all chrome versions from 66 to 78 are supported |
8080
| `specs` <br/> (_deprecated_) | This param is deprecated in favour of a more complete `cypress_proj_dir` param. The path to the spec files that need to be run on BrowserStack | Takes a list of strings that point to location of the spec files |
8181
| `cypress_proj_dir` | Path to the folder which contains `cypress.json` file. This path will be considered as the root path of the project. |- |
82-
| `cypress_dependencies` | List your node packages dependencies in `cypress_dependencies`. You may copy-paste all dependencies(including their versions) required to run your Cypress tests from `package.json` file. | - |
82+
| `npm_dependencies` | List your node packages dependencies in `npm_dependencies`. You may copy-paste all dependencies(including their versions) required to run your Cypress tests from `package.json` file. | - |
8383
| `project` | Name of your project. This will be displayed in your Automate dashboard, and you'll be able to search & filter your tests based on the project name. | A string providing the name of the project |
8484
| `customBuildName` | Helps in providing a custom name for the build. This will be displayed in your Automate dashboard, and you'll be able to search & filter your tests based on the build name. | A string providing the name of the build |
8585
| `local` | Helps in testing websites that cannot be accessed in public network. If you set this to `true`, please download the Local binary and establish a local connection first (you can learn how to do so [here](https://www.browserstack.com/local-testing/automate#command-line)) | Boolean: `true` / `false`. Set this to `true` if you need to test a local website. Set this to `false` if the website is accessible publicly. |

bin/templates/configTemplate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = function () {
2020
"local": false,
2121
"localIdentifier": null
2222
},
23-
"cypress_dependencies": {
23+
"npm_dependencies": {
2424
}
2525
}
2626
var EOL = require('os').EOL

0 commit comments

Comments
 (0)