From 37eec40f76db3287f761040819940fc273fc3874 Mon Sep 17 00:00:00 2001 From: Kai Nguyen Date: Tue, 2 Jul 2024 10:59:25 +1000 Subject: [PATCH] MICRO-349: Exclude types folder from test coverage --- vite.config.base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.base.ts b/vite.config.base.ts index ad4745ad..870e257b 100644 --- a/vite.config.base.ts +++ b/vite.config.base.ts @@ -23,7 +23,7 @@ export const viteBaseConfig = defineConfig({ environment: 'node', coverage: { reporter: ['text', 'html'], - exclude: ['node_modules/'], + exclude: ['node_modules/', '**/types'], all: true, branches: 80, functions: 80,