Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Carniato committed Dec 14, 2021
1 parent ec72165 commit 37cc82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async function waitForPendingRequests(page: playwright.Page, step: Step) {
const addOne = () => remaining++;
const finishOne = async () => {
// wait a tick to see if new requests start from this one.
await new Promise(resolve => setTimeout(resolve, 1000));
await new Promise((resolve) => setTimeout(resolve, 1000));
await page.evaluate(() => {});
if (!--remaining) resolve();
};
Expand Down

0 comments on commit 37cc82a

Please sign in to comment.