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:
Vendored
+10
-3
@@ -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}"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user