We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270f830 commit 89bc8d1Copy full SHA for 89bc8d1
vitest.config.ts
@@ -2,15 +2,7 @@ import { defineConfig } from "vitest/config";
2
3
export default defineConfig({
4
test: {
5
- // Prevent vitest from hanging when tests are done.
6
- // See https://github.com/vitest-dev/vitest/issues/4526#issuecomment-1817817409.
7
- pool: "forks",
8
-
9
- // Package analysis tests require a lot of time.
10
- testTimeout: 60000,
11
12
- coverage: {
13
- include: ["src/**"],
14
- },
+ testTimeout: 60_000, // Analyzing npm packages takes time.
+ coverage: { include: ["src/**"] },
15
},
16
});
0 commit comments