aboutsummaryrefslogtreecommitdiff
path: root/vitest.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vitest.config.ts')
-rw-r--r--vitest.config.ts11
1 files changed, 9 insertions, 2 deletions
diff --git a/vitest.config.ts b/vitest.config.ts
index c24a061..8b21dc2 100644
--- a/vitest.config.ts
+++ b/vitest.config.ts
@@ -1,8 +1,15 @@
-import { svelte } from "@sveltejs/vite-plugin-svelte";
+
+
+
+/*** IMPORT ------------------------------------------- ***/
+
import { defineConfig } from "vitest/config";
+import { svelte } from "@sveltejs/vite-plugin-svelte";
+
+/*** EXPORT ------------------------------------------- ***/
export default defineConfig({
- plugins: [svelte({ hot: false })],
+ plugins: [svelte()],
test: {
environment: "node",
include: ["tests/**/*.test.ts"]