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. // "singleThread: true" is removed in modern Vitest.
// Use fileParallelism: false to ensure test files run one by one to prevent port conflicts. // Use fileParallelism: false to ensure test files run one by one to prevent port conflicts.
fileParallelism: false, fileParallelism: false,
}, coverage: {
coverage: { provider: 'v8',
provider: 'v8', // Add 'json' for merging and output to a temporary directory
// Add 'json' for merging and output to a temporary directory reporter: ['text', 'html', 'json'],
reporter: ['text', 'html', 'json'], reportsDirectory: './.coverage/integration',
reportsDirectory: './.coverage/integration', clean: true,
clean: true, },
}, },
}); });