modified: .gitignore

modified:   .vscode/launch.json
	new file:   e2e/playwright-collect-coverage.spec.ts
	modified:   package-lock.json
	modified:   package.json
	modified:   playwright.config.ts
	new file:   scripts/merge-lcov.cjs
	new file:   scripts/normalize-lcov.cjs
	new file:   scripts/playwright-collect-coverage.cjs
	new file:   scripts/remap-and-report.cjs
	modified:   vite.config.ts
	new file:   vitest.config.ts
This commit is contained in:
2025-12-02 16:14:12 +10:00
parent d0eb4e953c
commit 6192bd20eb
12 changed files with 1134 additions and 10 deletions
+10 -3
View File
@@ -21,9 +21,9 @@
"request": "launch",
"command": "npm run test:e2e",
"cwd": "${workspaceFolder}",
"env": {
"CHROME_PATH": "<path to flatpak chrome wrapper>"
}
// "env": {
// "CHROME_PATH": "<path to flatpak chrome wrapper>"
// }
},
{
"name": "Unit Test Coverage",
@@ -38,6 +38,13 @@
"request": "launch",
"command": "npx tsc -noEmit && npm run build",
"cwd": "${workspaceFolder}"
},
{
"name": "Full CI Coverage test",
"type": "node-terminal",
"request": "launch",
"command": "npm run coverage:ci",
"cwd": "${workspaceFolder}"
}
]
}