Skip to content

Conversation

@feedthejim
Copy link
Contributor

@feedthejim feedthejim commented Dec 30, 2025

Summary

  • Print "Ready in Xms" immediately when HTTP server starts listening
  • Defer heavy initialization (config, bundler, etc.) to background
  • First request waits for init via existing handlersPromise mechanism
  • Fix shell script symlink resolution for pnpm node_modules/.bin
  • Fix Rust CLI canonicalize for symlink resolution

Benchmark Results (cumulative - final)

Metric Before After Improvement
Cold Listen 190ms 199ms +9ms (noise)
Cold Ready 951ms 873ms -78ms
Warm Listen 185ms 170ms -15ms
Warm Ready 483ms 461ms -22ms

Total Improvement (Canary → Final)

Metric Canary Final Improvement
Cold Listen 316ms 199ms -117ms (37%)
Cold Ready 1168ms 873ms -295ms (25%)
Warm Listen 286ms 170ms -116ms (41%)
Warm Ready 647ms 461ms -186ms (29%)

Test Plan

  • Run benchmark script to verify improvements
  • Build passes
  • Dev server shows "Ready" and handles requests correctly
  • First request waits for full initialization

🤖 Generated with Claude Code

@nextjs-bot
Copy link
Collaborator

Allow CI Workflow Run

  • approve CI run for commit: 28a223c

Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer

@feedthejim feedthejim force-pushed the perf-dev-early-ready branch 2 times, most recently from 5b2a7f2 to e66e783 Compare December 30, 2025 14:07
@feedthejim feedthejim force-pushed the perf-dev-rust-cli branch 2 times, most recently from 5541176 to e359b2b Compare December 30, 2025 14:11
@feedthejim feedthejim force-pushed the perf-dev-early-ready branch 2 times, most recently from a171bf5 to 619e232 Compare December 30, 2025 14:33
@feedthejim feedthejim changed the base branch from perf-dev-rust-cli to graphite-base/87942 December 30, 2025 14:49
@feedthejim feedthejim changed the base branch from graphite-base/87942 to perf-dev-rust-cli December 30, 2025 14:56
@feedthejim feedthejim force-pushed the perf-dev-early-ready branch 2 times, most recently from 4065f0d to a7d3863 Compare December 30, 2025 20:05
@feedthejim feedthejim force-pushed the perf-dev-rust-cli branch 2 times, most recently from 3539ff2 to ef3646c Compare December 30, 2025 20:16
Comment on lines +376 to +389
// Print "Ready" immediately for fast perceived startup
// Requests will wait via handlersPromise until init completes
const startServerProcessDuration =
performance.mark('next-start-end') &&
performance.measure(
'next-start-duration',
'next-start',
'next-start-end'
).duration
const formatDurationText =
startServerProcessDuration > 2000
? `${Math.round(startServerProcessDuration / 100) / 10}s`
: `${Math.round(startServerProcessDuration)}ms`
Log.event(`Ready in ${formatDurationText}`)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "Ready in Xms" message is printed before the heavy initialization completes. If initialization fails (at line 457-469), the misleading "Ready" message has already been logged, but the server exits with an error.

View Details
📝 Patch Details
diff --git a/packages/next/src/server/lib/start-server.ts b/packages/next/src/server/lib/start-server.ts
index ea219758a9..169b46a716 100644
--- a/packages/next/src/server/lib/start-server.ts
+++ b/packages/next/src/server/lib/start-server.ts
@@ -373,21 +373,6 @@ export async function startServer(
           logBundler: isDev,
         })
 
-        // Print "Ready" immediately for fast perceived startup
-        // Requests will wait via handlersPromise until init completes
-        const startServerProcessDuration =
-          performance.mark('next-start-end') &&
-          performance.measure(
-            'next-start-duration',
-            'next-start',
-            'next-start-end'
-          ).duration
-        const formatDurationText =
-          startServerProcessDuration > 2000
-            ? `${Math.round(startServerProcessDuration / 100) / 10}s`
-            : `${Math.round(startServerProcessDuration)}ms`
-        Log.event(`Ready in ${formatDurationText}`)
-
         let cleanupStarted = false
         let closeUpgraded: (() => void) | null = null
         const cleanup = () => {
@@ -474,6 +459,20 @@ export async function startServer(
 
         handlersReady()
 
+        // Print "Ready" only after successful initialization
+        const startServerProcessDuration =
+          performance.mark('next-start-end') &&
+          performance.measure(
+            'next-start-duration',
+            'next-start',
+            'next-start-end'
+          ).duration
+        const formatDurationText =
+          startServerProcessDuration > 2000
+            ? `${Math.round(startServerProcessDuration / 100) / 10}s`
+            : `${Math.round(startServerProcessDuration)}ms`
+        Log.event(`Ready in ${formatDurationText}`)
+
         if (process.env.TURBOPACK && isDev) {
           await validateTurboNextConfig({
             dir: serverOptions.dir,

Analysis

Misleading "Ready in Xms" message logged before critical initialization completes

What fails: Server prints "Ready in Xms" message at line 389 before calling getRequestHandlers() at line 457. If initialization fails, the "Ready" message has already been logged to the user's console, but then the server exits with an error.

How to reproduce:

  1. Create a configuration scenario that causes getRequestHandlers() to throw an error (e.g., corrupted config, missing dependencies during initialization)
  2. Start the Next.js dev server
  3. Observe that "Ready in Xms" is logged to console
  4. The server then exits with an error code and prints the error stack trace

Result: Users see misleading output suggesting the server started successfully when it actually failed during initialization.

Expected: The "Ready" message should only be logged after getRequestHandlers() completes successfully. If initialization fails, the "Ready" message should never be printed.

Root cause: Commit 3e57cf5 ("perf(dev): print Ready early and defer initialization") moved the "Ready" log message before the critical getRequestHandlers() initialization call as a performance optimization. While the defensive mechanism via handlersPromise prevents request processing until initialization completes, it does not prevent the misleading log message from being printed on failure.

Fix: Moved the "Ready in Xms" log message to after handlersReady() is called (line 461-475), ensuring it only prints after successful initialization. The log now correctly appears after all critical initialization in getRequestHandlers() completes.

- Print "Ready in Xms" immediately when HTTP server starts listening
- Defer heavy initialization (config, bundler, etc.) to background
- First request waits for init via existing handlersPromise mechanism
- Fix shell script symlink resolution for pnpm node_modules/.bin
- Fix Rust CLI canonicalize for symlink resolution
- Extract getSupportedBrowsers to lightweight module

This reduces perceived startup time from ~300ms to ~50-100ms.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@vercel vercel deleted a comment from nextjs-bot Jan 1, 2026
@vercel vercel deleted a comment from nextjs-bot Jan 1, 2026
@vercel vercel deleted a comment from codspeed-hq bot Jan 1, 2026
@vercel vercel deleted a comment from nextjs-bot Jan 1, 2026
@vercel vercel deleted a comment from nextjs-bot Jan 1, 2026
@nextjs-bot
Copy link
Collaborator

nextjs-bot commented Jan 1, 2026

❌ 7 failing tests in 3 jobs

CI running (3 jobs reported) · Updated 2026-01-01 20:54:44 UTC · Commit: 79adf32

File Failures Category
test/integration/cli/test/index.test.ts 3 turbopack development integration
test/e2e/next-script/index.test.ts 3 dev
test/e2e/app-dir/actions/app-action.test.ts 1 turbopack dev

Details

📁 test/integration/cli/test/index.test.ts — 3 failures
  • CLI Usage > dev > --inspect · turbopack development integration · Datadog Job · 7-day History · CI Logs

    pnpm test test/integration/cli/test/index.test.ts -t "--inspect"
    Error

Error: TIMED OUT: /- Debugger port:\s+9229/

▲ Next.js 16.1.1-canary.10 (Turbopack)

✓ Ready in 97ms
Creating turbopack project {
dir: '/root/actions-runner/_work/next.js/next.js/test/integration/cli/basic',
testMode: true
}

undefined
at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9)
at Object. (/root/actions-runner/_work/next.js/next.js/test/integration/cli/test/index.test.ts:589:9)

</details>
<!-- /J"test turbopack development integration (1/6) / build" -->

<!-- J"test turbopack development integration (1/6) / build" -->
- **CLI Usage > dev > --inspect 0** · `turbopack development integration` · [Datadog Job](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40git.commit.head_sha%3A%2279adf3217efab94f4720e285fb85e4981c2d90ae%22+%40test.name%3A%22CLI+Usage+dev+--inspect+0%22+%40test.type%3A%22turbopack%22+%40test.status%3A%22fail%22) · [7-day History](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40test.name%3A%22CLI+Usage+dev+--inspect+0%22+%40test.type%3A%22turbopack%22&from_ts=1766695903198&to_ts=1767300703198) · [CI Logs](https://github.com/vercel/next.js/actions/runs/20645121092/job/59281942584)
```bash
pnpm test test/integration/cli/test/index.test.ts -t "--inspect 0"
```
<details><summary>Error</summary>

Error: TIMED OUT: /- Debugger port:\s+\d+/

▲ Next.js 16.1.1-canary.10 (Turbopack)

✓ Ready in 395ms
Creating turbopack project {
dir: '/root/actions-runner/_work/next.js/next.js/test/integration/cli/basic',
testMode: true
}

undefined
at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9)
at Object. (/root/actions-runner/_work/next.js/next.js/test/integration/cli/test/index.test.ts:615:9)

</details>
<!-- /J"test turbopack development integration (1/6) / build" -->

<!-- J"test turbopack development integration (1/6) / build" -->
- **CLI Usage > dev > --inspect [port]** · `turbopack development integration` · [Datadog Job](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40git.commit.head_sha%3A%2279adf3217efab94f4720e285fb85e4981c2d90ae%22+%40test.name%3A%22CLI+Usage+dev+--inspect+%5Bport%5D%22+%40test.type%3A%22turbopack%22+%40test.status%3A%22fail%22) · [7-day History](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40test.name%3A%22CLI+Usage+dev+--inspect+%5Bport%5D%22+%40test.type%3A%22turbopack%22&from_ts=1766695903198&to_ts=1767300703198) · [CI Logs](https://github.com/vercel/next.js/actions/runs/20645121092/job/59281942584)
```bash
pnpm test test/integration/cli/test/index.test.ts -t "--inspect \[port\]"
```
<details><summary>Error</summary>

Error: TIMED OUT: /- Debugger port:\s+9230/

▲ Next.js 16.1.1-canary.10 (Turbopack)

✓ Ready in 421ms
Creating turbopack project {
dir: '/root/actions-runner/_work/next.js/next.js/test/integration/cli/basic',
testMode: true
}

undefined
at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9)
at Object. (/root/actions-runner/_work/next.js/next.js/test/integration/cli/test/index.test.ts:641:9)

</details>
<!-- /J"test turbopack development integration (1/6) / build" -->

</details>

<details>
<summary>📁 <a href="https://github.com/vercel/next.js/blob/79adf3217efab94f4720e285fb85e4981c2d90ae/test/e2e/next-script/index.test.ts"><code>test/e2e/next-script/index.test.ts</code></a> — 3 failures</summary>

<!-- J"test dev (3/10) / build" -->
- **experimental.nextScriptWorkers > experimental.nextScriptWorkers: true with required Partytown dependency for external script > Worker scripts are modified by Partytown to execute on a worker thread** · `dev` · [Datadog Job](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40git.commit.head_sha%3A%2279adf3217efab94f4720e285fb85e4981c2d90ae%22+%40test.name%3A%22experimental.nextScriptWorkers+experimental.nextScriptWorkers%3A+true+with+required+Partytown+dependency+for+external+script+Worker+scripts+are+modified+by+Partytown+to+execute+on+a+worker+thread%22+%40test.type%3A%22nextjs%22+%40test.status%3A%22fail%22) · [7-day History](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40test.name%3A%22experimental.nextScriptWorkers+experimental.nextScriptWorkers%3A+true+with+required+Partytown+dependency+for+external+script+Worker+scripts+are+modified+by+Partytown+to+execute+on+a+worker+thread%22+%40test.type%3A%22nextjs%22&from_ts=1766696084983&to_ts=1767300884983) · [CI Logs](https://github.com/vercel/next.js/actions/runs/20645121092/job/59281942576)
```bash
pnpm test-dev test/e2e/next-script/index.test.ts -t "Worker scripts are modified by Partytown to execute on a worker thread"
```
<details><summary>Error</summary>

Error: TIMED OUT: success

0

undefined
at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9)
at Object. (/root/actions-runner/_work/next.js/next.js/test/e2e/next-script/index.test.ts:340:11)

</details>
<!-- /J"test dev (3/10) / build" -->

<!-- J"test dev (3/10) / build" -->
- **experimental.nextScriptWorkers > experimental.nextScriptWorkers: true with required Partytown dependency for inline script > Inline worker script through children is modified by Partytown to execute on a worker thread** · `dev` · [Datadog Job](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40git.commit.head_sha%3A%2279adf3217efab94f4720e285fb85e4981c2d90ae%22+%40test.name%3A%22experimental.nextScriptWorkers+experimental.nextScriptWorkers%3A+true+with+required+Partytown+dependency+for+inline+script+Inline+worker+script+through+children+is+modified+by+Partytown+to+execute+on+a+worker+thread%22+%40test.type%3A%22nextjs%22+%40test.status%3A%22fail%22) · [7-day History](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40test.name%3A%22experimental.nextScriptWorkers+experimental.nextScriptWorkers%3A+true+with+required+Partytown+dependency+for+inline+script+Inline+worker+script+through+children+is+modified+by+Partytown+to+execute+on+a+worker+thread%22+%40test.type%3A%22nextjs%22&from_ts=1766696084983&to_ts=1767300884983) · [CI Logs](https://github.com/vercel/next.js/actions/runs/20645121092/job/59281942576)
```bash
pnpm test-dev test/e2e/next-script/index.test.ts -t "Inline worker script through children is modified by Partytown to execute on a worker thread"
```
<details><summary>Error</summary>

Error: TIMED OUT: 1

0

undefined
at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9)
at Object. (/root/actions-runner/_work/next.js/next.js/test/e2e/next-script/index.test.ts:404:11)

</details>
<!-- /J"test dev (3/10) / build" -->

<!-- J"test dev (3/10) / build" -->
- **experimental.nextScriptWorkers > experimental.nextScriptWorkers: true with required Partytown dependency for inline script > Inline worker script through dangerouslySetInnerHtml is modified by Partytown to execute on a worker thread** · `dev` · [Datadog Job](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40git.commit.head_sha%3A%2279adf3217efab94f4720e285fb85e4981c2d90ae%22+%40test.name%3A%22experimental.nextScriptWorkers+experimental.nextScriptWorkers%3A+true+with+required+Partytown+dependency+for+inline+script+Inline+worker+script+through+dangerouslySetInnerHtml+is+modified+by+Partytown+to+execute+on+a+worker+thread%22+%40test.type%3A%22nextjs%22+%40test.status%3A%22fail%22) · [7-day History](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40test.name%3A%22experimental.nextScriptWorkers+experimental.nextScriptWorkers%3A+true+with+required+Partytown+dependency+for+inline+script+Inline+worker+script+through+dangerouslySetInnerHtml+is+modified+by+Partytown+to+execute+on+a+worker+thread%22+%40test.type%3A%22nextjs%22&from_ts=1766696084983&to_ts=1767300884983) · [CI Logs](https://github.com/vercel/next.js/actions/runs/20645121092/job/59281942576)
```bash
pnpm test-dev test/e2e/next-script/index.test.ts -t "Inline worker script through dangerouslySetInnerHtml is modified by Partytown to execute on a worker thread"
```
<details><summary>Error</summary>

Error: TIMED OUT: 1

0

undefined
at check (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:726:9)
at Object. (/root/actions-runner/_work/next.js/next.js/test/e2e/next-script/index.test.ts:429:11)

</details>
<!-- /J"test dev (3/10) / build" -->

</details>

<details>
<summary>📁 <a href="https://github.com/vercel/next.js/blob/79adf3217efab94f4720e285fb85e4981c2d90ae/test/e2e/app-dir/actions/app-action.test.ts"><code>test/e2e/app-dir/actions/app-action.test.ts</code></a> — 1 failure</summary>

<!-- J"test turbopack dev (1/7) / build" -->
- **app-dir action handling > should support hoc auth wrappers** · `turbopack dev` · [Datadog Job](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40git.commit.head_sha%3A%2279adf3217efab94f4720e285fb85e4981c2d90ae%22+%40test.name%3A%22app-dir+action+handling+should+support+hoc+auth+wrappers%22+%40test.type%3A%22turbopack%22+%40test.status%3A%22fail%22) · [7-day History](https://app.datadoghq.com/ci/test/runs?query=%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22+%40test.name%3A%22app-dir+action+handling+should+support+hoc+auth+wrappers%22+%40test.type%3A%22turbopack%22&from_ts=1766695951781&to_ts=1767300751781) · [CI Logs](https://github.com/vercel/next.js/actions/runs/20645121092/job/59281942477)
```bash
pnpm test-dev-turbo test/e2e/app-dir/actions/app-action.test.ts -t "should support hoc auth wrappers"
```
<details><summary>Error</summary>

Error: expect(received).toBe(expected) // Object.is equality

Expected: "Error: Unauthorized request"
Received: "Error: The encoded data was not valid for encoding utf-8"
at toBe (/root/actions-runner/_work/next.js/next.js/test/e2e/app-dir/actions/app-action.test.ts:460:57)
at retry (/root/actions-runner/_work/next.js/next.js/test/lib/next-test-utils.ts:797:14)
at Object. (/root/actions-runner/_work/next.js/next.js/test/e2e/app-dir/actions/app-action.test.ts:458:5)

</details>
<!-- /J"test turbopack dev (1/7) / build" -->

</details>
@nextjs-bot
Copy link
Collaborator

nextjs-bot commented Jan 1, 2026

❌ 121 failing tests in 3 jobs

CI running (3 jobs reported) · Updated 2026-01-01 21:01:15 UTC · Commit: 79adf32

File Failures Category
C:\actions-runner_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts 112 integration windows
C:\actions-runner_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts 7 dev windows
C:\actions-runner_work\next.js\next.js\test\e2e\app-dir\metadata-edge\index.test.ts 2 prod windows

Details

📁 C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts — 112 failures
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should navigate through history after query update"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > should handle query/hash correctly during query updating #hello? $search · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating #hello\? \$search"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating #\? \$search"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating ## \$search"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > should handle query/hash correctly during query updating ##? $search · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating ##\? \$search"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > should handle query/hash correctly during query updating ##hello? $search · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating ##hello\? \$search"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > should handle query/hash correctly during query updating ##hello $search · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating ##hello \$search"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > should handle query/hash correctly during query updating #hello?world $search · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating #hello\?world \$search"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > should handle query/hash correctly during query updating #a ?hello=world · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating #a \?hello=world"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating #a \?hello"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle query/hash correctly during query updating #a \?hello="
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not show target deprecation warning"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should respond with 405 for POST to static page"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should contain generated page count in output"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should output traces"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not contain currentScript usage for publicPath"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not contain rsc APIs in main chunk"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render the page"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should polyfill Node\.js modules"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should allow etag header support"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With basic usage > should allow etag header support with getStaticProps · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should allow etag header support with getStaticProps"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should have X-Powered-By header support"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render 404 for routes that do not exist"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render 404 for /_next/static route"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render 200 for POST on page"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render 404 for POST on missing page"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With basic usage > should render 404 for _next routes that do not exist · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render 404 for _next routes that do not exist"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With basic usage > should render 404 even if the HTTP method is not GET or HEAD · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render 404 even if the HTTP method is not GET or HEAD"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render 404 for dotfiles in /static"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With basic usage > should return 405 method on static then GET and HEAD · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should return 405 method on static then GET and HEAD"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With basic usage > should return 412 on static file when If-Unmodified-Since is provided and file is modified · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should return 412 on static file when If-Unmodified-Since is provided and file is modified"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With basic usage > should return 200 on static file if If-Unmodified-Since is invalid date · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should return 200 on static file if If-Unmodified-Since is invalid date"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should set Content-Length header"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should set Cache-Control header"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With basic usage > should set correct Cache-Control header for static 404s · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should set correct Cache-Control header for static 404s"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should block special pages"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not contain customServer in NEXT_DATA"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should work with pages/api/index\.js"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should work with pages/api/hello\.js"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "does not work with pages/api/readfile-dirname\.js"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should work with pages/api/readfile-processcwd\.js"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should work with dynamic params and search string"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should navigate via client side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should navigate to nested index via client side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should reload page successfully \(on bad link\)"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With navigation > should reload page successfully (on bad data fetch) · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should reload page successfully \(on bad data fetch\)"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should navigate to external site and back"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should navigate to page with CSS and back"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should navigate to external site and back \(with query\)"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should change query correctly"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Runtime errors > should render a server side error on the client side · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render a server side error on the client side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render a client side component error"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Runtime errors > should call getInitialProps on _error page during a client side component error · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should call getInitialProps on _error page during a client side component error"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle already finished responses"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should allow to access /static/ and /_next/"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "Should allow access to public files"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should reload the page on page script error"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should add autoExport for auto pre-rendered pages"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not add autoExport for non pre-rendered pages"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should add prefetch tags when Link prefetch prop is used"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Misc > It does not add a timestamp to link tags with prefetch attribute · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "It does not add a timestamp to link tags with prefetch attribute"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should reload the page on page script error with prefetch"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not expose the compiled page file in development"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not put backslashes in pages-manifest\.json"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle failed param decoding"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should replace static pages with HTML files"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not replace non-static pages with HTML files"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should warn when prefetch is true"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not emit stats"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should contain the Next\.js version in window export"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should clear all core performance marks"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not clear custom performance marks"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should have defer on all script tags"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should only have one DOCTYPE"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should preserve query when hard navigating from page 404"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should remove placeholder for next/image correctly"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should render dynamic import components · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render dynamic import components"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should render one dynamically imported component and load its css files · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render one dynamically imported component and load its css files"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should render three dynamically imported components and load their css files · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render three dynamically imported components and load their css files"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should bundle two css modules for one dynamically imported component into one css file · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should bundle two css modules for one dynamically imported component into one css file"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should bundle two css modules for nested components into one css file · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should bundle two css modules for nested components into one css file"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should not remove css styles for same css file between page transitions · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not remove css styles for same css file between page transitions"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should output correct css even in case of three css module files while one is shared across files · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should output correct css even in case of three css module files while one is shared across files"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should render one dynamically imported component without any css files · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render one dynamically imported component without any css files"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > default behavior > should render even there are no physical chunk exists · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render even there are no physical chunk exists"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > ssr:false option > should not render loading on the server side · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not render loading on the server side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > ssr:false option > should render the component on client side · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render the component on client side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > ssr:true option > should render the component on the server side · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render the component on the server side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > ssr:true option > should render the component on client side · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render the component on client side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > custom loading > should render custom loading on the server side when ssr:false and loading is provided · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render custom loading on the server side when `ssr:false` and `loading` is provided"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > Dynamic import > custom loading > should render the component on client side · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should render the component on client side"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should set process\.env\.NODE_ENV in production"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should eliminate server only code on the client"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should eliminate client only code on the server"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should only access files inside .next directory · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should only access files inside \.next directory"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should not allow accessing files outside .next/static directory · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not allow accessing files outside \.next/static directory"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should not leak the user's home directory into the build · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not leak the user's home directory into the build"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should prevent URI based XSS attacks using single quotes · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks using single quotes"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should prevent URI based XSS attacks using double quotes · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks using double quotes"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should prevent URI based XSS attacks using semicolons and double quotes · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks using semicolons and double quotes"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should prevent URI based XSS attacks using semicolons and single quotes · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks using semicolons and single quotes"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should prevent URI based XSS attacks using src · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks using src"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should prevent URI based XSS attacks using querystring · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks using querystring"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should prevent URI based XSS attacks using querystring and quotes · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should prevent URI based XSS attacks using querystring and quotes"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • *Production Usage > With Security Related Issues > should handle encoded value in the pathname correctly * · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle encoded value in the pathname correctly \\"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should handle encoded value in the pathname correctly % · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle encoded value in the pathname correctly %"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should handle encoded value in the query correctly · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle encoded value in the query correctly"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should handle encoded value in the pathname correctly / · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle encoded value in the pathname correctly /"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should handle encoded value in the pathname to query correctly (/) · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle encoded value in the pathname to query correctly \(/\)"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should handle encoded / value for trailing slash correctly · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should handle encoded / value for trailing slash correctly"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
  • Production Usage > With Security Related Issues > should not execute script embedded inside svg image, even if dangerouslyAllowSVG=true · integration windows · Datadog Job · 7-day History · CI Logs
pnpm test C:\actions-runner\_work\next.js\next.js\test\production\pages-dir\production\test\index.test.ts -t "should not execute script embedded inside svg image, even if dangerouslyAllowSVG=true"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
📁 C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts — 7 failures
pnpm test-dev C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts -t "should handle edge only routes"
Error
Error: next dev exited unexpectedly with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-dev.ts:193:27)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1105:16)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:305:5)
pnpm test-dev C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts -t "should retrieve cookies in a server component in the edge runtime"
Error
Error: next dev exited unexpectedly with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-dev.ts:193:27)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1105:16)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:305:5)
pnpm test-dev C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts -t "should treat process as object without polyfill in edge runtime"
Error
Error: next dev exited unexpectedly with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-dev.ts:193:27)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1105:16)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:305:5)
pnpm test-dev C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts -t "should handle /index routes correctly"
Error
Error: next dev exited unexpectedly with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-dev.ts:193:27)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1105:16)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:305:5)
pnpm test-dev C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts -t "should resolve module without error in edge runtime"
Error
Error: next dev exited unexpectedly with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-dev.ts:193:27)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1105:16)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:305:5)
pnpm test-dev C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts -t "should resolve client component without error"
Error
Error: next dev exited unexpectedly with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-dev.ts:193:27)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1105:16)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:305:5)
pnpm test-dev C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\app-edge\app-edge.test.ts -t "should handle edge rsc hmr"
Error
Error: next dev exited unexpectedly with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-dev.ts:193:27)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at maybeClose (node:internal/child_process:1105:16)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:305:5)
📁 C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\metadata-edge\index.test.ts — 2 failures
  • app dir - Metadata API on the Edge runtime > OG image route > should not bundle ImageResponse into the page worker · prod windows · Datadog Job · 7-day History · CI Logs
pnpm test-start C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\metadata-edge\index.test.ts -t "should not bundle `ImageResponse` into the page worker"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
pnpm test-start C:\actions-runner\_work\next.js\next.js\test\e2e\app-dir\metadata-edge\index.test.ts -t "should render OpenGraph image meta tag correctly"
Error
Error: next build failed with code/signal 1
    at ChildProcess.<anonymous> (C:\actions-runner\_work\next.js\next.js\test\lib\next-modes\next-start.ts:79:17)
    at ChildProcess.emit (node:events:514:28)
    at ChildProcess.cp.emit (C:\actions-runner\_work\next.js\next.js\node_modules\.pnpm\cross-spawn@6.0.5\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (node:internal/child_process:294:12)
@codspeed-hq
Copy link

codspeed-hq bot commented Jan 1, 2026

CodSpeed Performance Report

Merging #87942 will not alter performance

Comparing perf-dev-early-ready (79adf32) with perf-dev-rust-cli (22b8f36)

Summary

✅ 17 untouched
⏩ 3 skipped1

Footnotes

  1. 3 benchmarks were skipped, so the baseline results were used instead. If they were deleted from the codebase, click here and archive them to remove them from the performance reports.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

created-by: Next.js team PRs by the Next.js team. Turbopack Related to Turbopack with Next.js. type: next

3 participants