-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 3.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 3.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@repo/e2e",
"description": "WebdriverIO Electron Service E2E Test Suite",
"version": "0.0.0",
"type": "module",
"private": "true",
"scripts": {
"clean": "pnpm dlx shx rm -rf ./logs ./node_modules pnpm-lock.yaml",
"logs": "tsx scripts/show-logs.ts",
"logs:follow": "tsx scripts/show-logs.ts --follow",
"test": "tsx scripts/run-matrix.ts",
"test:e2e:electron-builder": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=builder BINARY=true tsx scripts/run-matrix.ts",
"test:e2e:electron-builder:window": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=builder BINARY=true TEST_TYPE=window ENABLE_SPLASH_WINDOW=true tsx scripts/run-matrix.ts",
"test:e2e:electron-forge": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=forge BINARY=true tsx scripts/run-matrix.ts",
"test:e2e:electron-forge:window": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=forge BINARY=true TEST_TYPE=window ENABLE_SPLASH_WINDOW=true tsx scripts/run-matrix.ts",
"test:e2e:electron-script": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=script BINARY=false tsx scripts/run-matrix.ts",
"test:e2e:electron-script:window": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=script BINARY=false TEST_TYPE=window ENABLE_SPLASH_WINDOW=true tsx scripts/run-matrix.ts",
"test:e2e-mac-universal:electron-builder": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=builder BINARY=true MAC_UNIVERSAL=true tsx scripts/run-matrix.ts",
"test:e2e-mac-universal:electron-forge": "cross-env DEBUG=wdio-electron-service:launcher WDIO_VERBOSE=true FRAMEWORK=electron APP=forge BINARY=true MAC_UNIVERSAL=true tsx scripts/run-matrix.ts",
"test:e2e:standard": "cross-env TEST_TYPE=standard tsx scripts/run-matrix.ts",
"test:e2e:multiremote": "cross-env TEST_TYPE=multiremote tsx scripts/run-matrix.ts",
"test:e2e:standalone": "cross-env TEST_TYPE=standalone tsx scripts/run-matrix.ts",
"test:e2e:mac-universal": "cross-env MAC_UNIVERSAL=true tsx scripts/run-matrix.ts",
"test:e2e:tauri-basic": "cross-env FRAMEWORK=tauri APP=basic TEST_TYPE=standard tsx scripts/run-matrix.ts",
"test:e2e:tauri-basic:window": "cross-env FRAMEWORK=tauri APP=basic TEST_TYPE=window ENABLE_SPLASH_WINDOW=true tsx scripts/run-matrix.ts",
"test:e2e:tauri-basic:multiremote": "cross-env FRAMEWORK=tauri APP=basic TEST_TYPE=multiremote tsx scripts/run-matrix.ts",
"test:e2e:tauri-basic:standalone": "cross-env FRAMEWORK=tauri APP=basic TEST_TYPE=standalone tsx scripts/run-matrix.ts"
},
"dependencies": {
"@wdio/cli": "catalog:default",
"@wdio/electron-service": "link:../packages/electron-service",
"@wdio/globals": "catalog:default",
"@wdio/local-runner": "catalog:default",
"@wdio/mocha-framework": "catalog:default",
"@wdio/native-utils": "workspace:*",
"@wdio/tauri-service": "link:../packages/tauri-service",
"@wdio/xvfb": "catalog:default",
"electron": "catalog:default",
"tsx": "^4.21.0",
"webdriverio": "catalog:default"
},
"devDependencies": {
"@electron-forge/cli": "^7.10.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"@vitest/spy": "^4.0.16",
"@wdio/native-types": "workspace:*",
"@wdio/types": "catalog:",
"cross-env": "^10.1.0",
"p-limit": "^7.1.1",
"read-package-up": "^11.0.0",
"typescript": "^5.9.3",
"zod": "^4.3.5"
}
}