-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.51 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
40
41
{
"name": "playwright_sample_tests",
"version": "1.0.0",
"description": "web and mobile tests",
"main": "tests",
"scripts": {
"test": "npx playwright test & npx wdio run ./wdio.conf.ts & allure generate allure-results --clean && allure open",
"webTest": "npx playwright test & allure generate allure-results --clean && allure open",
"webTestRecorder": "npx playwright codegen playwright.dev",
"androidReport": "node node_modules/wdio-html-nice-reporter/lib/makeReport.js test-report.html 'reports/html-reports/'",
"androidTest": "npx wdio run ./wdio.conf.ts",
"allureReport": "allure generate allure-results --clean && allure open",
"wdioReport": "node node_modules/wdio-html-nice-reporter/lib/makeReport.js wdio-report.html 'reports/html-reports/'"
},
"keywords": [],
"author": "krishnan <hari.krishnan>",
"license": "ISC",
"dependencies": {
"@playwright/test": "1.33.0",
"@wdio/allure-reporter": "8.8.7",
"@wdio/appium-service": "8.8.7",
"@wdio/cli": "8.8.7",
"@wdio/local-runner": "8.8.7",
"@wdio/mocha-framework": "8.8.7",
"@wdio/reporter": "8.8.7",
"wdio-html-nice-reporter": "8.1.0",
"@wdio/spec-reporter": "8.8.7",
"@wdio/types": "8.8.7",
"allure-commandline": "2.22.0",
"allure-playwright": "2.2.1",
"appium": "^1.22.3",
"dotenv": "^16.0.3",
"log4js": "^6.9.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"wdio-video-reporter": "^2.0.0",
"exceljs": "^4.3.0",
"fs": "^0.0.1-security",
"xlsx": "^0.18.5"
}
}