-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.75 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
{
"name": "wp-sudo",
"private": true,
"scripts": {
"postinstall": "node bin/patch-wp-env.js",
"env:assert-wp-version": "bash bin/assert-wp-env-version.sh 7.0",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"env:clean": "wp-env destroy",
"local:plugin": "bash bin/local-plugin-dev.sh",
"test:e2e": "playwright test --config tests/e2e/playwright.config.ts --project=chromium",
"test:e2e:all": "playwright test --config tests/e2e/playwright.config.ts",
"test:e2e:stack-smoke": "playwright test --config tests/e2e/playwright.config.ts --project=chromium tests/e2e/specs/stack-smoke.spec.ts",
"test:e2e:multisite:stack-smoke": "WP_SUDO_E2E_MULTISITE_STACK=1 playwright test --config tests/e2e/playwright.config.ts --project=chromium tests/e2e/specs/multisite-stack-smoke.spec.ts",
"test:e2e:local": "playwright test --config tests/e2e/playwright.config.ts --project=chromium",
"test:e2e:local:multisite": "playwright test --config tests/e2e/playwright.config.ts --project=chromium tests/e2e/specs/multisite-network-admin.spec.ts",
"test:e2e:visual": "playwright test --config tests/e2e/playwright.config.ts --project=chromium-visual",
"test:e2e:ui": "playwright test --config tests/e2e/playwright.config.ts --ui",
"test:e2e:update-snapshots": "playwright test --config tests/e2e/playwright.config.ts --update-snapshots",
"screenshots": "WP_SUDO_CAPTURE=1 playwright test --config tests/e2e/playwright.config.ts --project=chromium tests/e2e/specs/capture-screenshots.spec.ts"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@wordpress/env": "11.10.0"
},
"overrides": {
"fast-xml-parser": "5.7.0",
"ajv": "8.18.0",
"qs": "6.15.2",
"js-yaml": "4.2.0",
"ws": "8.21.0"
}
}