Files
stockfill/.vscode/launch.json
T

51 lines
1.2 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Vite Dev Server",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}"
},
{
"name": "Launch Preview (Test) Server",
"type": "node-terminal",
"request": "launch",
"command": "npm run test",
"cwd": "${workspaceFolder}"
},
{
"name": "Playwright Tests",
"type": "node-terminal",
"request": "launch",
"command": "npm run test:e2e",
"cwd": "${workspaceFolder}",
// "env": {
// "CHROME_PATH": "<path to flatpak chrome wrapper>"
// }
},
{
"name": "Unit Test Coverage",
"type": "node-terminal",
"request": "launch",
"command": "npm run test:coverage",
"cwd": "${workspaceFolder}"
},
{
"name": "Lint and Build",
"type": "node-terminal",
"request": "launch",
"command": "npm run lint && npm run build",
"cwd": "${workspaceFolder}"
},
{
"name": "Full CI Coverage test",
"type": "node-terminal",
"request": "launch",
"command": "npm run coverage:ci",
"cwd": "${workspaceFolder}"
}
]
}