-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.02 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.02 KB
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
{
"name": "webdriverio-tests",
"version": "0.1.0",
"description": "",
"private": true,
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@wdio/allure-reporter": "^7.25.4",
"@wdio/cli": "^7.25.2",
"@wdio/local-runner": "^7.25.2",
"@wdio/mocha-framework": "^7.25.2",
"@wdio/spec-reporter": "^7.25.1",
"chai": "^4.3.6",
"chromedriver": "^107.0.1",
"husky": "^8.0.1",
"wdio-chromedriver-service": "^8.0.0"
},
"scripts": {
"test": "npx wdio run wdio.conf.js --suite allTests",
"homepage": "npx wdio run wdio.conf.js --suite homePageTests",
"mouseoverpage": "npx wdio run wdio.conf.js --suite mouseOverPageTests",
"progressbarpage": "npx wdio run wdio.conf.js --suite progressBarPageTests",
"sampleapppage": "npx wdio run wdio.conf.js --suite sampleAppTests",
"openallurreport": "allure open"
},
"dependencies": {
"allure-commandline": "^2.18.1"
}
}