22 lines
861 B
JSON
22 lines
861 B
JSON
{
|
|
"name": "auto-editor-tests",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"test": "npx playwright test",
|
|
"test:ui": "npx playwright test --ui",
|
|
"test:headed": "npx playwright test --headed",
|
|
"test:report": "npx playwright show-report",
|
|
"test:health": "npx playwright test tests/e2e/specs/health.spec.ts",
|
|
"test:dashboard": "npx playwright test tests/e2e/specs/dashboard.spec.ts",
|
|
"test:assets": "npx playwright test tests/e2e/specs/assets.spec.ts",
|
|
"test:editor": "npx playwright test tests/e2e/specs/editor.spec.ts",
|
|
"test:outputs": "npx playwright test tests/e2e/specs/outputs.spec.ts",
|
|
"test:rules": "npx playwright test tests/e2e/specs/rules.spec.ts",
|
|
"test:integration": "npx playwright test tests/e2e/specs/integration.spec.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.61.1"
|
|
}
|
|
}
|