Skip to content

Commit

Permalink
Set retries: undefined for local dev (#1803)
Browse files Browse the repository at this point in the history
* Set retries: undefined for local dev

* Set retries: 2 to the web test config
  • Loading branch information
whitphx committed Jan 11, 2024
1 parent a746c1c commit 0f6ee06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/suite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function run(): Promise<void> {
forbidOnly: isCI,
color: true,
timeout: 10000,
retries: 2,
retries: isCI ? 2 : undefined,
});

const testsRoot = path.resolve(__dirname, "..");
Expand Down
1 change: 1 addition & 0 deletions src/web/test/suite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export function run(): Promise<void> {
ui: "tdd",
reporter: undefined,
timeout: 10000,
retries: 2,
});

// bundles all files in the current directory matching `*.test`
Expand Down

0 comments on commit 0f6ee06

Please sign in to comment.