-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (34 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (34 loc) · 1.12 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
32
33
34
35
{
"name": "task2-wdio",
"type": "module",
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/cucumber": "^6.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.9",
"@wdio/allure-reporter": "^9.21.0",
"@wdio/cli": "^9.20.1",
"@wdio/cucumber-framework": "^9.20.1",
"@wdio/globals": "^9.23.0",
"@wdio/local-runner": "^9.20.1",
"@wdio/spec-reporter": "^9.20.0",
"allure-commandline": "^2.36.0",
"chai": "^6.2.1",
"cross-env": "^10.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"wdio-chromedriver-service": "^8.1.1",
"wdio-html-nice-reporter": "^8.1.7"
},
"scripts": {
"wdio": "wdio run src/config/wdio.conf.js",
"report": "allure generate reports/allure-results --clean -o allure-report && allure open allure-report",
"test:ui:cucumber": "wdio run src/config/wdio.conf.js",
"test:ui:smoke": "cross-env CUCUMBER_TAG=\"@ui and @smoke\" wdio run src/config/wdio.conf.js",
"test:ui:auth": "cross-env CUCUMBER_TAG='@auth' wdio run src/config/wdio.conf.js"
},
"dependencies": {
"pino": "^10.1.0",
"pino-pretty": "^13.1.3"
}
}