Skip to content

Commit

Permalink
tmp: increase test timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
zermelo-wisen committed Sep 11, 2024
1 parent fc3af07 commit 7e31c09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/integration/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async function run(): Promise<void> {
const mocha = new Mocha({
ui: 'bdd',
color: true,
timeout: '120s',
timeout: '600s',
});

temp.track();
Expand Down
2 changes: 1 addition & 1 deletion test/waitFor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function repeatUntil(
export async function waitFor(
message: string,
test: () => boolean | Promise<boolean>,
timeout = 30000
timeout = 600000
): Promise<void> {
const startTime = Date.now();
let delay = 100;
Expand Down

0 comments on commit 7e31c09

Please sign in to comment.