File size: 1,192 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 |
import { nextTestSetup } from 'e2e-utils'
import { assertHasRedbox, assertNoRedbox } from 'next-test-utils'
describe('develop - app-dir - edge errros hmr', () => {
const { next } = nextTestSetup({
files: __dirname,
})
it('should recover from build errors when server component error', async () => {
const browser = await next.browser('/')
const clientComponentSource = await next.readFile('app/comp.server.js')
await next.patchFile('app/comp.server.js', (content) => {
return content.replace('{/* < */}', '<') // uncomment
})
await assertHasRedbox(browser)
await next.patchFile('app/comp.server.js', clientComponentSource)
await assertNoRedbox(browser)
})
it('should recover from build errors when client component error', async () => {
const browser = await next.browser('/')
const clientComponentSource = await next.readFile('app/comp.client.js')
await next.patchFile('app/comp.client.js', (content) => {
return content.replace('{/* < */}', '<') // uncomment
})
await assertHasRedbox(browser)
await next.patchFile('app/comp.client.js', clientComponentSource)
await assertNoRedbox(browser)
})
})
|