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 f3a31d2 commit fcb9be0Copy full SHA for fcb9be0
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 `package.json` and `test_tmp/**/package.json` to prevent infinite watch loop
8
+ forceRerunTriggers: ['./vitest.config.js'],
9
+ },
10
+});
0 commit comments