-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.1 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
{
"name": "@vscode-wdio/e2e",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"test:e2e": "run-s test:e2e:basic test:e2e:workspace",
"test:e2e:basic": "run-s test:e2e:basic:*",
"test:e2e:basic:mocha": "cross-env VSCODE_WDIO_E2E_SCENARIO=mocha xvfb-maybe pnpm run wdio",
"test:e2e:basic:jasmine": "cross-env VSCODE_WDIO_E2E_SCENARIO=jasmine xvfb-maybe pnpm run wdio",
"test:e2e:basic:cucumber": "cross-env VSCODE_WDIO_E2E_SCENARIO=cucumber xvfb-maybe pnpm run wdio",
"test:e2e:workspace": "cross-env VSCODE_WDIO_E2E_SCENARIO=workspace xvfb-maybe pnpm run wdio",
"test:smoke": "run-s test:smoke:*",
"test:smoke:config": "cross-env VSCODE_WDIO_E2E_SCENARIO=config xvfb-maybe wdio run ./wdioSmoke.conf.ts",
"test:smoke:timeout": "cross-env VSCODE_WDIO_E2E_SCENARIO=timeout xvfb-maybe wdio run ./wdioSmoke.conf.ts",
"test:smoke:retro-wdio-win": "run-s test:smoke:retro-wdio-win:*",
"test:smoke:retro-wdio-win:run-latest": "cross-env VSCODE_WDIO_E2E_SCENARIO=mocha VSCODE_WDIO_SMOKE_RETRO_WIN=no xvfb-maybe pnpm run wdio",
"test:smoke:retro-wdio-win:prepare": "tsx ./scripts/retro-wdio-win.ts",
"test:smoke:retro-wdio-win:run": "cross-env VSCODE_WDIO_E2E_SCENARIO=mocha VSCODE_WDIO_SMOKE_RETRO_WIN=yes xvfb-maybe pnpm run wdio",
"test:smoke:retro-wdio-win:cleanup": "git checkout ../samples/e2e/mocha/package.json ../pnpm-lock.yaml && pnpm --filter @vscode-wdio/e2e-mocha install",
"test:smoke:env": "cross-env VSCODE_WDIO_E2E_SCENARIO=env xvfb-maybe wdio run ./wdioSmoke.conf.ts",
"wdio": "wdio run ./wdio.conf.ts"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@types/semver": "^7.7.0",
"@wdio/cli": "^9.16.2",
"@wdio/globals": "^9.16.2",
"@wdio/local-runner": "^9.16.2",
"@wdio/mocha-framework": "^9.16.2",
"@wdio/spec-reporter": "^9.16.2",
"@wdio/types": "^9.16.2",
"expect": "^30.0.0",
"semver": "^7.7.2",
"wdio-vscode-service": "^6.1.3",
"webdriver": "^9.16.2",
"webdriverio": "^9.16.2"
}
}