We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c9978 commit b6b7e15Copy full SHA for b6b7e15
vitest.config.js
@@ -0,0 +1,10 @@
1
+// vitest.config.js
2
+import {defineConfig} from 'vitest/config';
3
+
4
+export default defineConfig({
5
+ test: {
6
+ include: ['test/**/*.test.js'],
7
+ // Re-define "forceRerunTriggers" to exclude `test_tmp/**/package.json` to prevent infinite watch loop
8
+ forceRerunTriggers: ['./package.json', './vitest.config.js'],
9
+ },
10
+});
0 commit comments