We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f653c18 commit b556a29Copy full SHA for b556a29
packages/e2e-tests/kit-node/__tests__/kit.spec.ts
@@ -36,7 +36,7 @@ describe('kit-node', () => {
36
expect(html).toMatch('BEFORE_MOUNT');
37
38
// wait a bit for hydration to kick in
39
- await sleep(250);
+ await sleep(550);
40
41
// check hydrated content
42
expect(await getText('#load')).toBe('CLIENT_LOADED');
packages/e2e-tests/kit-node/src/routes/index.svelte
@@ -8,7 +8,7 @@
8
return new Promise((resolve) =>
9
setTimeout(() => {
10
resolve({ props: { load_status: 'CLIENT_LOADED' } });
11
- }, 200)
+ }, 500)
12
);
13
} else {
14
return { props: { load_status: 'SERVER_LOADED' } };
0 commit comments