Skip to content

Commit

Permalink
test(dev): revert timeout for windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pcattori committed Feb 22, 2023
1 parent 7068fae commit 3121ea6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/hmr-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ test("HMR", async ({ page }) => {
if (stderr.length > 0) throw Error(stderr);
return /💿 Built in /.test(devStdout());
},
{ timeoutMs: 120_000 }
{ timeoutMs: 10_000 }
);

// spin up app server
Expand All @@ -215,7 +215,7 @@ test("HMR", async ({ page }) => {
return / app ready: /.test(appStdout());
},
{
timeoutMs: 120_000,
timeoutMs: 10_000,
}
);

Expand Down

0 comments on commit 3121ea6

Please sign in to comment.