react-code-dataset / next.js /test /production /app-dir /deopted-into-client-rendering-warning /deopted-into-client-rendering-warning.test.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { nextBuild } from 'next-test-utils'
it('should not show deopted into client rendering warning', async () => {
const output = await nextBuild(__dirname, undefined, {
stdout: true,
stderr: true,
})
expect(output.code).toBe(0)
expect(output.stderr).not.toContain(
`Entire page / deopted into client-side rendering.`
)
})