Browse Source

migrate vitest config file

Yuki Takei 1 year ago
parent
commit
6df6dcbd29
1 changed files with 6 additions and 4 deletions
  1. 6 4
      packages/pluginkit/vitest.config.ts

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

@@ -10,10 +10,12 @@ export default defineConfig({
     clearMocks: true,
     globals: true,
     coverage: {
-      lines: 100,
-      functions: 100,
-      branches: 100,
-      statements: 100,
+      thresholds: {
+        lines: 100,
+        functions: 100,
+        branches: 100,
+        statements: 100,
+      },
     },
   },
 });