-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.46 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
36
37
38
39
40
41
42
{
"name": "appium-android-testing",
"version": "1.0.0",
"description": "This project automates a native Android application using Appium and TypeScript. \r Built for test coverage, CI/CD integration, and real-world mobile workflows.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "wdio run wdio.conf.ts && npm run allure:generate",
"test:withlog": "npm run logcat & npm run test",
"logcat": "adb logcat -c && adb logcat -v time > logs/logcat.txt",
"allure:generate": "allure generate reports/allure-results --clean -o reports/allure-report",
"allure:open": "allure open reports/allure-report",
"test:ci": "npm run test && npm run allure:generate",
"report": "npm run allure:generate && npm run allure:open",
"emulator:start": "emulator -avd Pixel_4"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.14.1",
"@wdio/allure-reporter": "^9.12.3",
"@wdio/appium-service": "^9.12.5",
"@wdio/cli": "^9.12.5",
"@wdio/globals": "^9.12.5",
"@wdio/local-runner": "^9.12.5",
"@wdio/mocha-framework": "^9.12.5",
"@wdio/spec-reporter": "^9.12.3",
"@wdio/types": "^9.12.3",
"allure-commandline": "^2.33.0",
"appium": "^2.17.1",
"appium-uiautomator2-driver": "^4.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"webdriverio": "^9.12.5"
}
}