20 lines
351 B
TypeScript
20 lines
351 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["__tests__/**/*.test.ts"],
|
|
testTimeout: 10000,
|
|
pool: "threads",
|
|
poolOptions: {
|
|
threads: {
|
|
minThreads: 1,
|
|
maxThreads: 8,
|
|
},
|
|
},
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["lcov"],
|
|
},
|
|
},
|
|
});
|