From 7da3daf10e591cc0b34fbb2aef81757439fe5c84 Mon Sep 17 00:00:00 2001 From: beatz174-bit Date: Mon, 1 Dec 2025 16:02:19 +1000 Subject: [PATCH] Add launch config for Vitest coverage --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index a2094e4..e59820e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -24,6 +24,13 @@ "env": { "CHROME_PATH": "" } + }, + { + "name": "Unit Test Coverage", + "type": "node-terminal", + "request": "launch", + "command": "npx vitest run --coverage", + "cwd": "${workspaceFolder}" } ] }