aboutsummaryrefslogtreecommitdiff
path: root/vitest.config.ts
blob: 8b21dc2d3123160a2559cc3e396e5e3ea31cedbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*** IMPORT ------------------------------------------- ***/

import { defineConfig } from "vitest/config";
import { svelte } from "@sveltejs/vite-plugin-svelte";

/*** EXPORT ------------------------------------------- ***/

export default defineConfig({
  plugins: [svelte()],
  test: {
    environment: "node",
    include: ["tests/**/*.test.ts"]
  }
});