-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
25 lines (25 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "nightwatch-browserstack",
"version": "1.0.0",
"readme": "Nightwatch Integration with [BrowserStack](https://www.browserstack.com)",
"description": "Selenium examples for Nightwatch and BrowserStack Automate",
"scripts": {
"test": "npm run single && npm run local && npm run parallel",
"single": "nightwatch --test ./tests/single/single_test.js --env browserstack",
"local": "nightwatch --test ./tests/local/local_test.js --env browserstack ",
"parallel": "nightwatch --test ./tests/single/single_test.js --env browserstack.chrome,browserstack.edge,browserstack.firefox",
"parallel_local": "nightwatch --test ./tests/local/local_test.js --env browserstack.firefox,browserstack.chrome",
"suite": "nightwatch ./tests/suite --parallel --env browserstack.chrome",
"sample-test": "nightwatch --test ./tests/single/single_test.js --env env1,env2,env3",
"sample-local-test": "nightwatch --test ./tests/local/local_test.js --env env1,env2,env3"
},
"repository": {
"type": "git",
"url": "https://github.com/browserstack/nightwatch-browserstack"
},
"dependencies": {
"@nightwatch/browserstack": "^0.1.3",
"nightwatch": "^2.6.20"
},
"license": "MIT"
}