-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "odd-integration-tests",
"version": "1.1.3",
"private": true,
"description": "Vitest harness for the ODD (Outlandish Desktop Decorator) foundation modules.",
"scripts": {
"test": "vitest run",
"test:widgets": "vitest run tests/integration/widgets.test.js",
"test:widgets:visual": "node tests/visual/widgets-visual.mjs",
"test:widgets:all": "npm run test:widgets && npm run test:widgets:visual",
"test:watch": "vitest",
"test:e2e": "playwright test",
"e2e:local": "bash bin/e2e-local.sh all",
"e2e:docker": "docker compose -f docker-compose.e2e.yml up -d",
"e2e:docker:down": "docker compose -f docker-compose.e2e.yml down",
"e2e:local:provision": "bash bin/e2e-local.sh provision",
"build:previews": "node odd/bin/build-previews",
"prepare": "husky"
},
"lint-staged": {
"odd/**/*.php": [
"vendor/bin/phpcs -q"
]
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.59.1",
"@wordpress/hooks": "^4.10.0",
"husky": "^9.1.7",
"jsdom": "^24.1.0",
"lint-staged": "^16.4.0",
"vitest": "^1.6.0"
}
}