mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-13 11:07:16 +08:00
14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
|
import { defineConfig } from "vitest/config";
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
globals: true,
|
||
|
environment: "happy-dom",
|
||
|
setupFiles: ["__tests__/setup-tests.ts"],
|
||
|
|
||
|
coverage: {
|
||
|
include: ["**/*.ts"],
|
||
|
},
|
||
|
},
|
||
|
});
|