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 fc80d27 commit 05d2f38Copy full SHA for 05d2f38
test/development/app-dir/missing-required-html-tags/index.test.ts
@@ -63,22 +63,7 @@ describe('app-dir - missing required html tags', () => {
63
)
64
65
66
- await openRedbox(browser)
67
// TODO(NDX-768): Should show "missing tags" error
68
- expect(await getRedboxDescription(browser)).toMatchInlineSnapshot(`
69
- "In HTML, <p> cannot be a child of <#document>.
70
- This will cause a hydration error."
71
- `)
72
- expect(await getRedboxTotalErrorCount(browser)).toBe(1)
73
-
74
- // Fix the issue again
75
- await next.patchFile('app/layout.js', (code) =>
76
- code.replace(
77
- 'return children',
78
- 'return <html><body>{children}</body></html>'
79
- )
80
81
82
await assertNoRedbox(browser)
83
})
84
0 commit comments