File size: 3,002 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
import { nextTestSetup } from 'e2e-utils'
import {
getRedboxSource,
openRedbox,
getStackFramesContent,
} from 'next-test-utils'
describe('app-dir - owner-stack-react-missing-key-prop', () => {
const { isTurbopack, next } = nextTestSetup({
files: __dirname,
})
it('should catch invalid element from on rsc component', async () => {
const browser = await next.browser('/rsc')
await openRedbox(browser)
const stackFramesContent = await getStackFramesContent(browser)
const source = await getRedboxSource(browser)
if (isTurbopack) {
expect(stackFramesContent).toMatchInlineSnapshot(`
"at span ()
at <anonymous> (app/rsc/page.tsx (7:9))
at Array.map ()
at Page (app/rsc/page.tsx (6:13))"
`)
expect(source).toMatchInlineSnapshot(`
"app/rsc/page.tsx (7:9) @ <anonymous>
5 | <div>
6 | {list.map((item, index) => (
> 7 | <span>{item}</span>
| ^
8 | ))}
9 | </div>
10 | )"
`)
} else {
expect(stackFramesContent).toMatchInlineSnapshot(`
"at span ()
at eval (app/rsc/page.tsx (7:9))
at Array.map ()
at Page (app/rsc/page.tsx (6:13))"
`)
expect(source).toMatchInlineSnapshot(`
"app/rsc/page.tsx (7:9) @ eval
5 | <div>
6 | {list.map((item, index) => (
> 7 | <span>{item}</span>
| ^
8 | ))}
9 | </div>
10 | )"
`)
}
})
it('should catch invalid element from on ssr client component', async () => {
const browser = await next.browser('/ssr')
await openRedbox(browser)
const stackFramesContent = await getStackFramesContent(browser)
const source = await getRedboxSource(browser)
if (isTurbopack) {
expect(stackFramesContent).toMatchInlineSnapshot(`
"at p ()
at <unknown> (app/ssr/page.tsx (9:9))
at Array.map ()
at Page (app/ssr/page.tsx (8:13))"
`)
expect(source).toMatchInlineSnapshot(`
"app/ssr/page.tsx (9:9) @ <unknown>
7 | <div>
8 | {list.map((item, index) => (
> 9 | <p>{item}</p>
| ^
10 | ))}
11 | </div>
12 | )"
`)
} else {
expect(stackFramesContent).toMatchInlineSnapshot(`
"at p ()
at eval (app/ssr/page.tsx (9:9))
at Array.map ()
at Page (app/ssr/page.tsx (8:13))"
`)
expect(source).toMatchInlineSnapshot(`
"app/ssr/page.tsx (9:9) @ eval
7 | <div>
8 | {list.map((item, index) => (
> 9 | <p>{item}</p>
| ^
10 | ))}
11 | </div>
12 | )"
`)
}
})
})
|