Add launch config for Vitest coverage

This commit is contained in:
beatz174-bit
2025-12-01 16:02:19 +10:00
parent a86723004b
commit 7da3daf10e
+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}"
} }
] ]
} }