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.
2 parents 24f4ec7 + 18f17df commit 308134cCopy full SHA for 308134c
tests/vitest.config.js
@@ -1,6 +1,8 @@
1
import { defineConfig } from "vitest/config"
2
import { defineVitestProject } from "@nuxt/test-utils/config"
3
4
+const globalRetry = process.env.CI ? 3 : 0
5
+
6
export default defineConfig({
7
test: {
8
projects: [
@@ -14,6 +16,7 @@ export default defineConfig({
14
16
inline: ["vuetify"],
15
17
},
18
19
+ retry: globalRetry,
20
21
}),
22
await defineVitestProject({
@@ -27,6 +30,7 @@ export default defineConfig({
27
30
28
31
29
32
33
34
35
36
],
0 commit comments