mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-07 23:26:59 +08:00
19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: "node",
|
|
setupFiles: ["__tests__/setup-tests.ts"],
|
|
pool: "forks",
|
|
|
|
coverage: {
|
|
include: ["**/*.ts"],
|
|
provider: "istanbul",
|
|
reporter: [
|
|
"text", // For the terminal
|
|
"lcov", // For the VSCode extension and browser
|
|
],
|
|
},
|
|
},
|
|
});
|