aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/vitest.config.js
blob: 3d607161a9a1608fae5b6bf0edc3cfcee4ac2f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineConfig } from "vitest/config";

export default defineConfig({
  test: {
    globals: true,
    environment: "happy-dom",
    globalSetup: "__tests__/global-setup.ts",
    setupFiles: ["__tests__/setup-tests.ts"],

    coverage: {
      include: ["**/*.ts"],
    },
  },
});