-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.49 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.49 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
{
"name": "wp-sudo",
"private": true,
"scripts": {
"env:assert-wp-version": "bash bin/assert-wp-env-version.sh 7.0-RC1",
"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"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@wordpress/env": "11.1.0"
},
"overrides": {
"fast-xml-parser": "5.5.8",
"ajv": "8.18.0"
}
}