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 a27fa76 commit d514d69Copy full SHA for d514d69
test/development/app-dir/missing-required-html-tags/index.test.ts
@@ -10,6 +10,12 @@ import {
10
describe('app-dir - missing required html tags', () => {
11
const { next } = nextTestSetup({ files: __dirname })
12
13
+ if (process.env.__NEXT_CACHE_COMPONENTS === 'true') {
14
+ // TODO(restart-on-cache-miss): reenable once the bug is fixed in:
15
+ // https://github.com/vercel/next.js/pull/85818
16
+ it.skip('currently broken in Cache Components', () => {})
17
+ }
18
+
19
it('should display correct error count in dev indicator', async () => {
20
const browser = await next.browser('/')
21
await waitForRedbox(browser)
0 commit comments