From a44e4eca41fe5d221b39c622a41d69b1f10c5a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 22 Mar 2024 16:41:27 -0300 Subject: [PATCH] vite.config: Remove coverage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since we are loading all the widgets and looking for them, vite is also checking if we are testing everything on them as well. This breaks all the coverages values. Signed-off-by: Patrick José Pereira --- vite.config.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 8a1a09dac..ecfeb91c2 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -34,13 +34,5 @@ export default defineConfig({ test: { globals: true, environment: 'jsdom', - coverage: { - branches: 90, - functions: 95, - lines: 98, - perFile: true, - reporter: ['html', 'text'], - statements: 95, - }, }, })