This commit is contained in:
seb
2025-07-17 05:32:02 +02:00
commit a492223e45
24 changed files with 3880 additions and 0 deletions

73
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,73 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "npm install",
"type": "shell",
"command": "npm",
"args": ["install"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "npm run test",
"type": "shell",
"command": "npm",
"args": ["run", "test"],
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "npm run test:headed",
"type": "shell",
"command": "npm",
"args": ["run", "test:headed"],
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "install browsers",
"type": "shell",
"command": "npm",
"args": ["run", "install-browsers"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "install and run",
"dependsOrder": "sequence",
"dependsOn": ["npm install", "npm run test"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}