From 8925eeca497c0315864725e2380385c70ea3f359 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 25 Aug 2024 22:02:31 +0200 Subject: [PATCH] chore: update vitest config --- vitest.config.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/vitest.config.ts b/vitest.config.ts index df4ab5b..d53978a 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -1,7 +1,11 @@ -import { configDefaults, defineConfig } from "vitest/config"; +import { defineConfig } from "vitest/config"; export default defineConfig({ - test: { - watchExclude: [...configDefaults.watchExclude, "test/fixtures/**"] + server: { + watch: { + ignored: [ + "test/fixtures/**" + ] + } } });