test: retry installation tests up to 3 times (#32910)
Installation tests can fail due to e.g. network issues. Lets align with library tests and retry up to 3 times.
This commit is contained in:
parent
228eb141db
commit
c84305ed73
|
@ -38,7 +38,7 @@ export default defineConfig({
|
||||||
outputDir,
|
outputDir,
|
||||||
testIgnore: '**\/fixture-scripts/**',
|
testIgnore: '**\/fixture-scripts/**',
|
||||||
timeout: 5 * 60 * 1000,
|
timeout: 5 * 60 * 1000,
|
||||||
retries: 0,
|
retries: process.env.CI ? 3 : 0,
|
||||||
reporter: reporters(),
|
reporter: reporters(),
|
||||||
forbidOnly: !!process.env.CI,
|
forbidOnly: !!process.env.CI,
|
||||||
workers: 1,
|
workers: 1,
|
||||||
|
|
Loading…
Reference in New Issue