Skip to content

Commit

Permalink
Adjust config
Browse files Browse the repository at this point in the history
  • Loading branch information
flevi29 committed Jan 30, 2025
1 parent cfff563 commit 31fc1a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ export default defineConfig(({ mode }) => {
},
},
test: {
include: "tests/**/*.test.ts",
exclude: "tests/env/**",
include: ["tests/**/*.test.ts"],
exclude: ["tests/env/**"],
fileParallelism: false,
testTimeout: 100_000, // 100 seconds
coverage: { include: "src/**/*.ts" },
coverage: { include: ["src/**/*.ts"] },
},
};
});

0 comments on commit 31fc1a5

Please sign in to comment.