-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 1.73 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
26
27
28
29
30
31
32
33
34
{
"name": "browserstack-examples-playwright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"browserstack-local": "^1.4.8",
"playwright": "^1.17.2",
"util": "^0.12.4"
},
"devDependencies": {
"@playwright/test": "^1.17.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"onPrem-endToEnd": "npx playwright test login.spec.js --headed --config=resources/conf/playwright.config.js --project chromium",
"onPrem-parallel": "npx playwright test --headed --config=resources/conf/playwright.config.js --workers 2",
"bstack-single": "npx playwright test login.spec.js --config=resources/conf/playwright-bstack.config.js --project 'chrome@latest:Windows 10@browserstack'",
"bstack-parallel-tests": "npx playwright test --config=resources/conf/playwright-bstack.config.js --project 'chrome@latest:Windows 10@browserstack'",
"bstack-parallel-browsers": "npx playwright test e2e.spec.js --config=resources/conf/playwright-bstack.config.js --workers 2",
"bstack-local": "BROWSERSTACK_LOCAL=true npx playwright test login.spec.js --config=resources/conf/playwright-bstack-local.config.js --project 'chrome@latest:Windows 10@browserstack'",
"bstack-local-parallel": "BROWSERSTACK_LOCAL=true npx playwright test login.spec.js --config=resources/conf/playwright-bstack-local.config.js --workers 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/princebaretto99/browserstack-examples-playwright.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/princebaretto99/browserstack-examples-playwright/issues"
},
"homepage": "https://github.com/princebaretto99/browserstack-examples-playwright#readme"
}