Skip to content

Commit 3d12949

Browse files
authored
ugh (#6419)
1 parent 0c6ddf0 commit 3d12949

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/kit/test/apps/basics/test/client.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -672,12 +672,12 @@ test.describe.serial('Invalidation', () => {
672672

673673
await page.click('button');
674674
await page.waitForLoadState('networkidle');
675-
await page.waitForTimeout(0); // apparently necessary
675+
await page.waitForTimeout(200); // apparently necessary
676676
expect(await page.textContent('h1')).toBe('a: 2, b: 3');
677677

678678
await page.click('button');
679679
await page.waitForLoadState('networkidle');
680-
await page.waitForTimeout(0);
680+
await page.waitForTimeout(200);
681681
expect(await page.textContent('h1')).toBe('a: 4, b: 5');
682682
});
683683
});

0 commit comments

Comments
 (0)