From 07fa680b28adda362ad1498bf56822408e47ee27 Mon Sep 17 00:00:00 2001 From: nicholas-codecov Date: Tue, 4 Feb 2025 09:07:24 -0400 Subject: [PATCH] adjust vite config for v3 --- vitest.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitest.config.mjs b/vitest.config.mjs index 0205f79f3e..3f318360df 100644 --- a/vitest.config.mjs +++ b/vitest.config.mjs @@ -32,7 +32,7 @@ const EXCLUDE_FROM_COVERAGE = [ ] const VitestConfig = defineConfig((config) => { - const reporters = ['basic'] + const reporters = ['default'] if (process.env.ENABLE_TEST_REPORTER) { reporters.push(['junit', { outputFile: 'reports/junit/junit.xml' }]) }