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

This commit is contained in:
2025-11-22 14:24:48 -08:00
parent dcf25b83d2
commit 246d041df2

View File

@@ -16,12 +16,12 @@ export default defineConfig({
// "singleThread: true" is removed in modern Vitest.
// 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,
coverage: {
provider: 'v8',
// Add 'json' for merging and output to a temporary directory
reporter: ['text', 'html', 'json'],
reportsDirectory: './.coverage/integration',
clean: true,
},
},
});