From 246d041df28cd33c2d2dd9b6ee58e0a22580f102 Mon Sep 17 00:00:00 2001 From: Torben Sorensen Date: Sat, 22 Nov 2025 14:24:48 -0800 Subject: [PATCH] more unit testing --- vitest.config.integration.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/vitest.config.integration.ts b/vitest.config.integration.ts index e322f42d..49fcf69c 100644 --- a/vitest.config.integration.ts +++ b/vitest.config.integration.ts @@ -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, + }, }, }); \ No newline at end of file