diff --git a/.nycrc.json b/.nycrc.json index 44345bf49f..e655757933 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -1,6 +1,6 @@ { "extension": [".js", ".cjs", ".mjs", ".ts", ".vue"], - "reporter": ["html", "json"], + "reporter": ["html", "json", "text-summary"], "report-dir": "target/frontend-coverage/combined", "temp-dir": "target/.nyc_output", "check-coverage": true, diff --git a/vitest.config.ts b/vitest.config.ts index 618e03cfe3..bf2159911a 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -36,7 +36,7 @@ export default defineConfig({ all: false, provider: 'istanbul', reportsDirectory: 'target/frontend-coverage/unit-tests/', - reporter: ['html', 'json'], + reporter: ['html', 'json', 'text-summary'], }, }, });