more db unit tests - best o luck !
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 4m24s

This commit is contained in:
2025-12-06 22:58:37 -08:00
parent 6f74de3f88
commit cea3586984
9 changed files with 600 additions and 16 deletions

View File

@@ -52,7 +52,10 @@ export default defineConfig({
coverage: {
provider: 'v8',
// We remove 'text' here. The final text report will be generated by `nyc` after merging.
reporter: ['text', 'html', 'json'],
reporter: [
// Add maxCols to suggest a wider output for the text summary.
['text', { maxCols: 200 }],
'html', 'json'],
// hanging-process reporter helps identify tests that do not exit properly - comes at a high cost tho
//reporter: ['verbose', 'html', 'json', 'hanging-process'],
reportsDirectory: './.coverage/unit',