Merge pull request #147 from beatz174-bit/codex/add-unit-test-coverage-to-launch.json

Add VS Code launch config for Vitest coverage
This commit is contained in:
beatz174-bit
2025-12-01 16:04:23 +10:00
committed by GitHub
+7
View File
@@ -24,6 +24,13 @@
"env": { "env": {
"CHROME_PATH": "<path to flatpak chrome wrapper>" "CHROME_PATH": "<path to flatpak chrome wrapper>"
} }
},
{
"name": "Unit Test Coverage",
"type": "node-terminal",
"request": "launch",
"command": "npx vitest run --coverage",
"cwd": "${workspaceFolder}"
} }
] ]
} }