@supatest/wdio-appium-reporter 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +6839 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +137 -0
- package/dist/index.d.ts +137 -0
- package/dist/index.js +6834 -0
- package/dist/index.js.map +1 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@supatest/wdio-appium-reporter",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Supatest Appium reporter - stream mobile test results to Supatest dashboard",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"appium",
|
|
27
|
+
"wdio",
|
|
28
|
+
"webdriverio",
|
|
29
|
+
"reporter",
|
|
30
|
+
"mobile",
|
|
31
|
+
"testing",
|
|
32
|
+
"test-automation",
|
|
33
|
+
"supatest",
|
|
34
|
+
"test-reporting",
|
|
35
|
+
"ios",
|
|
36
|
+
"android",
|
|
37
|
+
"ci",
|
|
38
|
+
"continuous-integration"
|
|
39
|
+
],
|
|
40
|
+
"author": "Supatest AI",
|
|
41
|
+
"license": "ISC",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/supatest-ai/supatest.git",
|
|
45
|
+
"directory": "wdio-appium-reporter"
|
|
46
|
+
},
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/supatest-ai/supatest/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/supatest-ai/supatest#readme",
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"@wdio/reporter": ">=8.0.0",
|
|
56
|
+
"webdriverio": ">=8.0.0"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"p-limit": "^6.1.0"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@vitest/coverage-v8": "^2.0.0",
|
|
63
|
+
"@wdio/reporter": "^9.0.0",
|
|
64
|
+
"@wdio/types": "^9.0.0",
|
|
65
|
+
"@types/node": "^20.12.12",
|
|
66
|
+
"tsup": "^8.5.1",
|
|
67
|
+
"typescript": "^5.4.5",
|
|
68
|
+
"vitest": "^2.0.0",
|
|
69
|
+
"webdriverio": "^9.0.0",
|
|
70
|
+
"@supatest/reporter-core": "0.0.1"
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=18.0.0"
|
|
74
|
+
},
|
|
75
|
+
"sideEffects": false,
|
|
76
|
+
"scripts": {
|
|
77
|
+
"build": "tsup",
|
|
78
|
+
"dev": "tsup --watch",
|
|
79
|
+
"type-check": "tsc --noEmit",
|
|
80
|
+
"test": "vitest",
|
|
81
|
+
"test:run": "vitest run",
|
|
82
|
+
"test:coverage": "vitest run --coverage",
|
|
83
|
+
"test:watch": "vitest watch",
|
|
84
|
+
"test:integration": "pnpm build && cd ../reporter-test-suites/appium-saucedemo && pnpm test",
|
|
85
|
+
"test:e2e": "pnpm test:integration"
|
|
86
|
+
}
|
|
87
|
+
}
|