more unit testing
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 1m15s

This commit is contained in:
2025-11-22 14:17:56 -08:00
parent 17ded81631
commit 7bb97f299e
5 changed files with 1288 additions and 16 deletions

View File

@@ -17,4 +17,11 @@ export default defineConfig({
// Use fileParallelism: false to ensure test files run one by one to prevent port conflicts.
fileParallelism: false,
},
coverage: {
provider: 'v8',
// Add 'json' for merging and output to a temporary directory
reporter: ['text', 'html', 'json'],
reportsDirectory: './.coverage/integration',
clean: true,
},
});