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 6097795 commit c3e5730Copy full SHA for c3e5730
playground/ssr-react/__tests__/ssr-react.spec.ts
@@ -50,7 +50,8 @@ test('/', async () => {
50
})
51
52
test('hmr', async () => {
53
- await page.goto(url)
+ await untilBrowserLogAfter(() => page.goto(url), 'hydrated')
54
+
55
editFile('src/pages/Home.jsx', (code) =>
56
code.replace('<h1>Home', '<h1>changed'),
57
)
@@ -70,7 +71,8 @@ test('client navigation', async () => {
70
71
72
73
test(`circular dependencies modules doesn't throw`, async () => {
74
75
76
expect(await page.textContent('.circ-dep-init')).toMatch(
77
'circ-dep-init-a circ-dep-init-b',
78
0 commit comments