Skip to content

Commit

Permalink
ugh (#6419)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris authored Aug 30, 2022
1 parent 0c6ddf0 commit 3d12949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/kit/test/apps/basics/test/client.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -672,12 +672,12 @@ test.describe.serial('Invalidation', () => {

await page.click('button');
await page.waitForLoadState('networkidle');
await page.waitForTimeout(0); // apparently necessary
await page.waitForTimeout(200); // apparently necessary
expect(await page.textContent('h1')).toBe('a: 2, b: 3');

await page.click('button');
await page.waitForLoadState('networkidle');
await page.waitForTimeout(0);
await page.waitForTimeout(200);
expect(await page.textContent('h1')).toBe('a: 4, b: 5');
});
});

0 comments on commit 3d12949

Please sign in to comment.