We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c6ddf0 commit 3d12949Copy full SHA for 3d12949
packages/kit/test/apps/basics/test/client.test.js
@@ -672,12 +672,12 @@ test.describe.serial('Invalidation', () => {
672
673
await page.click('button');
674
await page.waitForLoadState('networkidle');
675
- await page.waitForTimeout(0); // apparently necessary
+ await page.waitForTimeout(200); // apparently necessary
676
expect(await page.textContent('h1')).toBe('a: 2, b: 3');
677
678
679
680
- await page.waitForTimeout(0);
+ await page.waitForTimeout(200);
681
expect(await page.textContent('h1')).toBe('a: 4, b: 5');
682
});
683
0 commit comments