From b5469a68dcec81bfca2bdfe8d9ad1e27dc548c7b Mon Sep 17 00:00:00 2001 From: Alec Larson <1925840+aleclarson@users.noreply.github.com> Date: Tue, 25 Jun 2024 03:08:19 -0400 Subject: [PATCH] chore: skip *.js for code coverage --- vitest.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vitest.config.ts b/vitest.config.ts index b3b9d531..2cf110bd 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -7,7 +7,8 @@ export default defineConfig({ test: { globals: true, coverage: { - thresholds: { 100: true } + thresholds: { 100: true }, + exclude: ['*.js'] } }, resolve: {