-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.36 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
35
36
37
38
39
{
"name": "webdriverio_practice",
"version": "0.1.0",
"description": "WebDriverIO practice project",
"scripts": {
"configure:browsers": "./replace_mount_pwd.sh",
"selenoid:start": "docker pull selenoid/vnc:chrome_$BROWSER_VERSION && docker-compose up -d --force-recreate",
"selenoid:stop": "docker-compose down --rmi all && docker rmi selenoid/vnc:chrome_$BROWSER_VERSION",
"test": "wdio wdio.conf.js",
"test:remote": "SELENOID=0.0.0.0 wdio",
"clean": "rimraf ./allure-results ./allure-report",
"report": "allure generate ./allure-results --clean && allure open",
"report-ci": "allure generate allure-results --clean -o allure-report",
"prettier": "prettier --write ."
},
"author": "isandratskyi",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@wdio/allure-reporter": "^5.22.4",
"@wdio/cli": "^5.23.0",
"@wdio/local-runner": "^5.23.0",
"@wdio/mocha-framework": "^5.18.7",
"@wdio/spec-reporter": "^5.23.0",
"@wdio/sync": "^5.23.0",
"allure-commandline": "^2.13.0",
"chai": "^4.3.0",
"chromedriver": "^90.0.0",
"mocha": "^8.3.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5",
"wdio-chromedriver-service": "^5.0.2",
"webdriverio": "^5.23.0",
"prettier": "2.2.1"
}
}