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 c79c140 commit 6672f75Copy full SHA for 6672f75
integrations/upgrade/upgrade-errors.test.ts
@@ -31,7 +31,9 @@ test(
31
@tailwind utilities;
32
`,
33
},
34
+ retry: 0,
35
36
+
37
async ({ exec, expect }) => {
38
// Ensure we are in a git repo
39
await exec('git init')
integrations/utils.ts
@@ -37,6 +37,7 @@ interface TestConfig {
[filePath: string]: string | Uint8Array
}
40
+ retry?: number
41
timeout?: number
42
installDependencies?: boolean
43
@@ -88,7 +89,7 @@ export function test(
88
89
name,
90
{
91
timeout: config.timeout ?? TEST_TIMEOUT,
- retry: process.env.CI ? 2 : 0,
92
+ retry: config.retry ?? (process.env.CI ? 2 : 0),
93
only: only || (!process.env.CI && debug),
94
skip,
95
concurrent: false,
0 commit comments