Browse Source

add coverage threshold

Yuki Takei 2 years ago
parent
commit
c6d0b2a20f
1 changed files with 6 additions and 0 deletions
  1. 6 0
      packages/pluginkit/vitest.config.ts

+ 6 - 0
packages/pluginkit/vitest.config.ts

@@ -9,5 +9,11 @@ export default defineConfig({
     environment: 'node',
     environment: 'node',
     clearMocks: true,
     clearMocks: true,
     globals: true,
     globals: true,
+    coverage: {
+      lines: 100,
+      functions: 100,
+      branches: 100,
+      statements: 100,
+    },
   },
   },
 });
 });