forked from session-foundation/session-appium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 3.06 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "session-appium",
"version": "1.0.0",
"scripts": {
"lint": "yarn prettier . --write && yarn eslint .",
"lint-check": "yarn prettier . --check && yarn eslint .",
"tsc": "tsc",
"tsc-watch": "tsc -w",
"test": "npx playwright test --timeout 300000 ./run/test/specs/*.spec.ts --grep ",
"test-android-shard": "npx playwright test --timeout 300000 ./run/test/specs/*.spec.ts --grep android --shard ",
"test-no-retry": "_TESTING=1 npx playwright test --timeout 300000 ./run/test/specs/*.spec.ts --grep ",
"test-one": "_TESTING=1 _FORCE_LOGS=0 npx playwright test --timeout 300000 ./run/test/**/*.spec.ts --grep",
"test-udid": "_TESTING=1 npx playwright test UDID=$udid --timeout 300000 ./run/test/**/*.spec.ts --grep",
"test-ios": "_TESTING=1 npx playwright test --timeout 400000 ./run/test/**/*.spec.ts --grep ios",
"test-android": "_TESTING=1 npx playwright test --timeout 300000 ./run/test/**/*.spec.ts --grep android",
"build-and-test": "yarn tsc && yarn test",
"test-one-logs": "_TESTING=1 _FORCELOGS=1 npx playwright test --timeout 300000 --retries 0 ./run/test/**/*.spec.ts --grep",
"test-parallel": "_TESTING=1 npx playwright test ./run/test/**/*.spec.ts --grep ios",
"test-high-risk-android": "_TESTING=1 npx playwright test --timeout 300000 ./run/test/**/*.spec.ts --grep 'android @high-risk'",
"test-high-risk-ios": "_TESTING=1 npx playwright test --timeout 300000 ./run/test/**/*.spec.ts --grep 'ios @high-risk'"
},
"devDependencies": {
"@appium/execute-driver-plugin": "^3.0.1",
"@appium/images-plugin": "^3.0.17",
"@eslint/js": "^9.14.0",
"@types/lodash": "^4.14.191",
"@types/node": "^20.14.10",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.59.5",
"@wdio/types": "^8.1.2",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"lodash": "^4.17.21",
"png-js": "^1.0.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"wd": "^1.14.0",
"wdio-wait-for": "^2.2.6"
},
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": "use yarn",
"yarn": ">=4",
"npm": "use yarn"
},
"dependencies": {
"@playwright/test": "^1.45.1",
"appium": "^2.4.1",
"appium-uiautomator2-driver": "patch:appium-uiautomator2-driver@npm%3A3.8.2#~/patches/appium-uiautomator2-driver-npm-3.8.2-1ce2a0f39e.patch",
"appium-xcuitest-driver": "^7.26.0",
"dotenv": "^16.4.5"
},
"packageManager": "[email protected]",
"resolutions": {
"@appium/support@npm:^5.1.6": "patch:@appium/support@npm%3A5.1.2#~/patches/@appium-support-npm-5.1.2-0c5ea57d71.patch",
"@appium/support@npm:^5.1.2": "patch:@appium/support@npm%3A5.1.2#~/patches/@appium-support-npm-5.1.2-0c5ea57d71.patch",
"@appium/support@npm:^5.0.3": "patch:@appium/support@npm%3A5.1.2#~/patches/@appium-support-npm-5.1.2-0c5ea57d71.patch",
"@appium/support@npm:^5.1.1": "patch:@appium/support@npm%3A5.1.2#~/patches/@appium-support-npm-5.1.2-0c5ea57d71.patch"
}
}