react-code-dataset
/
next.js
/test
/production
/app-dir
/deopted-into-client-rendering-warning
/deopted-into-client-rendering-warning.test.ts
| 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.` | |
| ) | |
| }) | |