From 8932c1eaa939d3d21ccf97218bd7c64fd5173cb5 Mon Sep 17 00:00:00 2001 From: Rene Haas Date: Sat, 22 Oct 2022 10:51:25 +0200 Subject: [PATCH] add issue link to workaround --- local/config/src/vitest.js | 1 + 1 file changed, 1 insertion(+) diff --git a/local/config/src/vitest.js b/local/config/src/vitest.js index 91291ee..143e3fa 100644 --- a/local/config/src/vitest.js +++ b/local/config/src/vitest.js @@ -11,6 +11,7 @@ module.exports = defineConfig({ include, coverage: { reportsDirectory: './.coverage/unit', + // https://github.com/vitest-dev/vitest/issues/2190 // without this the setup file or the test files show up in the final coverage on the CI exclude: [`**/${setupFileName}`, ...include], },