733fe2f38a
* fix: stabilize e2e suite and align dev runtime config * fix: harden forbidden-settings e2e assertion * fix: make forbidden settings e2e assertion robust
68 lines
1.2 KiB
JSON
68 lines
1.2 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "E2E stable",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"test:e2e"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/frontend"
|
|
},
|
|
"group": "test",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "E2E stable + merged video",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"test:e2e:with-video"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/frontend"
|
|
},
|
|
"group": "test",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "E2E all browsers",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"test:e2e:all"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/frontend"
|
|
},
|
|
"group": "test",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "E2E all browsers + merged video",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"test:e2e:all:with-video"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/frontend"
|
|
},
|
|
"group": "test",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "E2E stable non-interactive",
|
|
"type": "shell",
|
|
"command": "cd frontend && PLAYWRIGHT_HTML_OPEN=never PLAYWRIGHT_WORKERS=1 npm run test:e2e -- --workers=1",
|
|
"isBackground": false,
|
|
"group": "test"
|
|
}
|
|
]
|
|
} |