From d1c8600d0e89e09b1dfbb85120ea62aa381736da Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Tue, 4 Feb 2025 13:31:50 -0700 Subject: [PATCH] fix: coverage report generation --- vitest.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vitest.config.js b/vitest.config.js index 58a3d56b..3b0120c5 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -1,5 +1,5 @@ -import { defineConfig } from 'vitest/config'; import dotenv from 'dotenv'; +import { defineConfig } from 'vitest/config'; dotenv.config(); @@ -10,6 +10,7 @@ export default defineConfig({ include: ['test/services/**/*.{js,ts}'], coverage: { provider: 'istanbul', + reporter: ['lcov', 'html'], include: ['src/**/*.{js,ts}'], thresholds: { lines: 90,