Files
next.js/test/production/allow-development-build/allow-development-build.test.ts
Arian Tron 61f56f997c
Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
first commit
2026-03-10 19:37:31 +03:30

80 lines
2.5 KiB
TypeScript

import { nextTestSetup } from 'e2e-utils'
import { retry } from 'next-test-utils'
describe('allow-development-build', () => {
describe('with NODE_ENV set to development', () => {
const { next } = nextTestSetup({
files: __dirname,
env: {
NODE_ENV: 'development',
},
nextConfig: {
experimental: {
allowDevelopmentBuild: true,
},
},
})
it('should warn about a non-standard NODE_ENV', () => {
expect(next.cliOutput).toContain(
'You are using a non-standard "NODE_ENV" value in your environment'
)
})
it.each(['app-page', 'pages-page'])(
`should show React development errors in %s`,
async (page) => {
const browser = await next.browser(page, {
pushErrorAsConsoleLog: true,
})
await retry(async () => {
const logs = await browser.log()
const errorLogs = logs.filter((log) => log.source === 'error')
expect(errorLogs).toEqual(
expect.arrayContaining([
{
message: expect.toBeOneOf([
expect.toBeOneOf([
expect.stringContaining(
"Hydration failed because the server rendered HTML didn't match the client. As a result this tree will be regenerated on the client."
),
expect.stringContaining(
"Hydration failed because the server rendered text didn't match the client. As a result this tree will be regenerated on the client."
),
]),
expect.stringContaining(
'There was an error while hydrating. Because the error happened outside of a Suspense boundary, the entire root will switch to client rendering.'
),
]),
source: 'error',
},
])
)
})
}
)
})
describe('with NODE_ENV not set to development', () => {
const { next } = nextTestSetup({
files: __dirname,
skipStart: true,
nextConfig: {
experimental: {
allowDevelopmentBuild: true,
},
},
})
it('should fail the build with a message about not setting NODE_ENV', async () => {
await next.start().catch(() => {})
expect(next.cliOutput).toContain(
"The experimental.allowDevelopmentBuild option requires NODE_ENV to be explicitly set to 'development'"
)
})
})
})