From: Mathieu Laurent Date: Fri, 5 Apr 2024 16:03:43 +0000 (+0200) Subject: fix: exclude from vitest the playwright e2e/** subfolders X-Git-Tag: v3.10.3~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58883922ec00ebf87d5dca62549ff28a7b1ed193;p=thirdparty%2Fvuejs%2Fcreate-vue.git fix: exclude from vitest the playwright e2e/** subfolders --- diff --git a/template/config/vitest/vitest.config.js b/template/config/vitest/vitest.config.js index 10067d57..4b1c8979 100644 --- a/template/config/vitest/vitest.config.js +++ b/template/config/vitest/vitest.config.js @@ -7,7 +7,7 @@ export default mergeConfig( defineConfig({ test: { environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], + exclude: [...configDefaults.exclude, 'e2e/**'], root: fileURLToPath(new URL('./', import.meta.url)) } })