From 49d79099ebba3a863c2ecd39edf00d6b85eb1012 Mon Sep 17 00:00:00 2001 From: maany Date: Tue, 30 Jan 2024 00:00:26 +0100 Subject: [PATCH] disable coverage thresholds --- vite.config.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 0349dd4..695f7b9 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -47,12 +47,13 @@ export default defineConfig({ provider: "v8", reporter: ["json", "json-summary", "html", "lcov", "text"], reportOnFailure: true, - thresholds: { - statements: 10, - branches: 10, - functions: 10, - lines: 10, - }, + // TODO: update coverage thresholds + // thresholds: { + // statements: 10, + // branches: 10, + // functions: 10, + // lines: 10, + // }, exclude: [ "app/**/*.{ts,tsx}", "tests/**/*.{ts,tsx}",