Skip to content

Commit

Permalink
add retries to api test
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd committed Oct 11, 2024
1 parent 732ba47 commit 185a31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/playwright.config.local-auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default defineConfig({
timeout: 60 * 1000,
testDir: 'tests',
fullyParallel: false,
retries: 0,
retries: process.env.CI ? 2 : 1,
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
use: {
baseURL: `https://runtime-local.uds.dev:${port}/`,
Expand Down

0 comments on commit 185a31c

Please sign in to comment.