Skip to content

Conversation

@mischnic
Copy link
Contributor

@mischnic mischnic commented Jan 6, 2026

The unit.rs test fixture isn't exactly doing what the vercel/nft setup is doing. We need to look into which of these are actually broken because of Turbopack bugs

vercel/nft@941be1c...67038d5

@nextjs-bot nextjs-bot added created-by: Turbopack team PRs by the Turbopack team. Turbopack Related to Turbopack with Next.js. labels Jan 6, 2026
Copy link
Contributor Author

mischnic commented Jan 6, 2026

This stack of pull requests is managed by Graphite. Learn more about stacking.

@nextjs-bot
Copy link
Collaborator

Allow CI Workflow Run

  • approve CI run for commit: 94efff9

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

@mischnic mischnic force-pushed the mischnic/new-nft-tests branch from 94efff9 to 2003bbd Compare January 6, 2026 15:21
@mischnic mischnic marked this pull request as ready for review January 6, 2026 15:22
@mischnic mischnic requested a review from a team January 6, 2026 15:22
@codspeed-hq
Copy link

codspeed-hq bot commented Jan 6, 2026

CodSpeed Performance Report

Merging this PR will not alter performance

Comparing mischnic/new-nft-tests (68180e0) with canary (64c08f4)

Summary

✅ 17 untouched benchmarks
⏩ 3 skipped benchmarks1

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.

@mischnic mischnic force-pushed the mischnic/new-nft-tests branch from 2003bbd to 68180e0 Compare January 7, 2026 19:18
@@ -0,0 +1 @@
export const test = 'fallback version'
Copy link
Contributor

Choose a reason for hiding this comment

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

Files use ES module syntax (export const) but package.json declares type: "commonjs", causing SyntaxError at runtime

View Details
📝 Patch Details
diff --git a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/fallback.js b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/fallback.js
index 4e3ede2819..8b3121f685 100644
--- a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/fallback.js
+++ b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/fallback.js
@@ -1 +1 @@
-export const test = 'fallback version'
+module.exports = { test: 'fallback version' }
diff --git a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/module-sync.js b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/module-sync.js
index e7287d8dff..3a14d71e6e 100644
--- a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/module-sync.js
+++ b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs-node20/module-sync.js
@@ -1 +1 @@
-export const test = 'module-sync version'
+module.exports = { test: 'module-sync version' }
diff --git a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/fallback.js b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/fallback.js
index 4e3ede2819..8b3121f685 100644
--- a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/fallback.js
+++ b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/fallback.js
@@ -1 +1 @@
-export const test = 'fallback version'
+module.exports = { test: 'fallback version' }
diff --git a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/module-sync.js b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/module-sync.js
index e7287d8dff..3a14d71e6e 100644
--- a/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/module-sync.js
+++ b/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/module-sync-condition-cjs/module-sync.js
@@ -1 +1 @@
-export const test = 'module-sync version'
+module.exports = { test: 'module-sync version' }

Analysis

The issue was a syntax mismatch in two test directories:

  1. module-sync-condition-cjs-node20: fallback.js and module-sync.js
  2. module-sync-condition-cjs: fallback.js and module-sync.js

Both directories have package.json with "type": "commonjs", which tells Node.js to treat .js files as CommonJS modules. However, the files were using ES module syntax (export const test = '...'), which is invalid in CommonJS context.

When input.js calls require('test-pkg-sync-cjs-node20') or require('test-pkg-sync-cjs'), Node.js attempts to parse the fallback.js (as it's in the default export condition) and module-sync.js (as the module-sync condition is used) as CommonJS files. This causes a SyntaxError: "Unexpected token 'export'".

The fix converts the export statements to CommonJS syntax using module.exports:

  • export const test = 'fallback version'module.exports = { test: 'fallback version' }
  • export const test = 'module-sync version'module.exports = { test: 'module-sync version' }

After the fix, both test directories run successfully without syntax errors.

Fix on Vercel

Comment on lines +117 to +118
// #[case::module_create_require_destructure_namespace("module-create-require-destructure-namespace"
// )] #[case::module_create_require_destructure("module-create-require-destructure")]
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
// #[case::module_create_require_destructure_namespace("module-create-require-destructure-namespace"
// )] #[case::module_create_require_destructure("module-create-require-destructure")]
// #[case::module_create_require_destructure_namespace("module-create-require-destructure-namespace")]
// #[case::module_create_require_destructure("module-create-require-destructure")]

Malformed comment spanning lines 117-118 with improper attribute macro syntax

View Details
📝 Patch Details
diff --git a/turbopack/crates/turbopack-tracing/tests/unit.rs b/turbopack/crates/turbopack-tracing/tests/unit.rs
index efc3976c5c..7afdcfbd5e 100644
--- a/turbopack/crates/turbopack-tracing/tests/unit.rs
+++ b/turbopack/crates/turbopack-tracing/tests/unit.rs
@@ -114,8 +114,8 @@ static ALLOC: turbo_tasks_malloc::TurboMalloc = turbo_tasks_malloc::TurboMalloc;
 // #[case::microtime_node_gyp("microtime-node-gyp")]
 // #[case::mixed_esm_cjs("mixed-esm-cjs")]
 #[case::module_create_require("module-create-require")]
-// #[case::module_create_require_destructure_namespace("module-create-require-destructure-namespace"
-// )] #[case::module_create_require_destructure("module-create-require-destructure")]
+// #[case::module_create_require_destructure_namespace("module-create-require-destructure-namespace")]
+// #[case::module_create_require_destructure("module-create-require-destructure")]
 // #[case::module_create_require_ignore_other("module-create-require-ignore-other")]
 // #[case::module_create_require_named_import("module-create-require-named-import")]
 // #[case::module_create_require_named_require("module-create-require-named-require")]

Analysis

The issue was a stylistically malformed comment in the test attribute list. Lines 117-118 attempted to comment out two test case attributes but did so in a confusing and incorrect manner:

Original problematic code (lines 117-118):

// #[case::module_create_require_destructure_namespace("module-create-require-destructure-namespace"
// )] #[case::module_create_require_destructure("module-create-require-destructure")]

The problem: Line 117's comment is missing the closing parenthesis and bracket )] before the line ends, leaving an incomplete attribute syntax. Line 118 then starts with // )], making it look like orphaned code that's not properly commented.

While the code is technically syntactically valid (because both lines start with //, making everything a comment), this pattern is:

  1. Confusing and error-prone to maintain
  2. Doesn't follow the standard single-line-per-case pattern used elsewhere in the file
  3. Makes the intent unclear to readers

Fix applied:
Changed to properly close each attribute on its own line:

// #[case::module_create_require_destructure_namespace("module-create-require-destructure-namespace")]
// #[case::module_create_require_destructure("module-create-require-destructure")]

This makes the code cleaner, more maintainable, and consistent with the surrounding commented-out test cases in the file.

Fix on Vercel

@nextjs-bot
Copy link
Collaborator

Stats from current PR

✅ No significant changes detected

📊 All Metrics
📖 Metrics Glossary

Dev Server Metrics:

  • Listen = TCP port starts accepting connections
  • First Request = HTTP server returns successful response
  • Cold = Fresh build (no cache)
  • Warm = With cached build artifacts

Build Metrics:

  • Fresh = Clean build (no .next directory)
  • Cached = With existing .next directory

Change Thresholds:

  • Time: Changes < 50ms AND < 10%, OR < 2% are insignificant
  • Size: Changes < 1KB AND < 1% are insignificant
  • All other changes are flagged to catch regressions

⚡ Dev Server

Metric Canary PR Change Trend
Cold (Listen) 456ms 455ms ▁█▁▁▁
Cold (First Request) 1.207s 1.191s ▁▁█▇█
Warm (Listen) 456ms 456ms ▁██▁█
Warm (First Request) 387ms 347ms ▆██▁▁
📦 Dev Server (Webpack) (Legacy)

📦 Dev Server (Webpack)

Metric Canary PR Change Trend
Cold (Listen) 559ms 559ms ▁▁▁▁▁
Cold (First Request) 2.326s 2.298s ▂▂▁▁▂
Warm (Listen) 559ms 559ms ▁▁▁▁▁
Warm (First Request) 2.310s 2.291s ▁▁▁▁▂

⚡ Production Builds

Metric Canary PR Change Trend
Fresh Build 4.170s 4.128s ██▂▁▂
Cached Build 4.177s 4.152s ▇█▁▂▁
📦 Production Builds (Webpack) (Legacy)

📦 Production Builds (Webpack)

Metric Canary PR Change Trend
Fresh Build 17.351s 17.451s ▁▁▁▁▁
Cached Build 17.394s 17.413s ▁▁▁▁▁
node_modules Size 457 MB 457 MB ▁▁▁▁▁
📦 Bundle Sizes

Bundle Sizes

⚡ Turbopack

Client

Main Bundles: **430 kB** → **430 kB** ✅ -3 B

82 files with content-based hashes (individual files not comparable between builds)

Server

Middleware
Canary PR Change
middleware-b..fest.js gzip 787 B 785 B
Total 787 B 785 B ✅ -2 B
Build Details
Build Manifests
Canary PR Change
_buildManifest.js gzip 448 B 451 B
Total 448 B 451 B ⚠️ +3 B

📦 Webpack

Client

Main Bundles
Canary PR Change
2086.HASH.js gzip 169 B N/A -
2161-HASH.js gzip 5.4 kB N/A -
2747-HASH.js gzip 4.48 kB N/A -
4322-HASH.js gzip 52.5 kB N/A -
ec793fe8-HASH.js gzip 62.3 kB N/A -
framework-HASH.js gzip 59.8 kB 59.8 kB
main-app-HASH.js gzip 251 B 254 B 🔴 +3 B (+1%)
main-HASH.js gzip 38.4 kB 38.8 kB
webpack-HASH.js gzip 1.68 kB 1.68 kB
1596.HASH.js gzip N/A 169 B -
2658-HASH.js gzip N/A 52.2 kB -
6349-HASH.js gzip N/A 4.46 kB -
7019-HASH.js gzip N/A 5.42 kB -
b17a3386-HASH.js gzip N/A 62.3 kB -
Total 225 kB 225 kB ⚠️ +128 B
Polyfills
Canary PR Change
polyfills-HASH.js gzip 39.4 kB 39.4 kB
Total 39.4 kB 39.4 kB
Pages
Canary PR Change
_app-HASH.js gzip 194 B 193 B
_error-HASH.js gzip 182 B 182 B
css-HASH.js gzip 336 B 335 B
dynamic-HASH.js gzip 1.8 kB 1.8 kB
edge-ssr-HASH.js gzip 256 B 256 B
head-HASH.js gzip 352 B 349 B
hooks-HASH.js gzip 385 B 384 B
image-HASH.js gzip 580 B 580 B
index-HASH.js gzip 259 B 258 B
link-HASH.js gzip 2.5 kB 2.51 kB
routerDirect..HASH.js gzip 319 B 317 B
script-HASH.js gzip 385 B 387 B
withRouter-HASH.js gzip 316 B 315 B
1afbb74e6ecf..834.css gzip 106 B 106 B
Total 7.97 kB 7.96 kB ✅ -8 B

Server

Edge SSR
Canary PR Change
edge-ssr.js gzip 124 kB 124 kB
page.js gzip 240 kB 241 kB
Total 364 kB 365 kB ⚠️ +719 B
Middleware
Canary PR Change
middleware-b..fest.js gzip 654 B 653 B
middleware-r..fest.js gzip 155 B 156 B
middleware.js gzip 32.6 kB 33 kB 🔴 +410 B (+1%)
edge-runtime..pack.js gzip 842 B 842 B
Total 34.2 kB 34.6 kB ⚠️ +410 B
Build Details
Build Manifests
Canary PR Change
_buildManifest.js gzip 738 B 738 B
Total 738 B 738 B
Build Cache
Canary PR Change
0.pack gzip 3.62 MB 3.62 MB
index.pack gzip 101 kB 98.8 kB 🟢 2.28 kB (-2%)
index.pack.old gzip 100 kB 100 kB
Total 3.83 MB 3.82 MB ✅ -1.49 kB

🔄 Shared (bundler-independent)

Runtimes
Canary PR Change
app-page-exp...dev.js gzip 303 kB 303 kB
app-page-exp..prod.js gzip 158 kB 158 kB
app-page-tur...dev.js gzip 302 kB 302 kB
app-page-tur..prod.js gzip 158 kB 158 kB
app-page-tur...dev.js gzip 299 kB 299 kB
app-page-tur..prod.js gzip 156 kB 156 kB
app-page.run...dev.js gzip 299 kB 299 kB
app-page.run..prod.js gzip 156 kB 156 kB
app-route-ex...dev.js gzip 68.7 kB 68.7 kB
app-route-ex..prod.js gzip 47.5 kB 47.5 kB
app-route-tu...dev.js gzip 68.7 kB 68.7 kB
app-route-tu..prod.js gzip 47.6 kB 47.6 kB
app-route-tu...dev.js gzip 68.3 kB 68.3 kB
app-route-tu..prod.js gzip 47.3 kB 47.3 kB
app-route.ru...dev.js gzip 68.3 kB 68.3 kB
app-route.ru..prod.js gzip 47.3 kB 47.3 kB
dist_client_...dev.js gzip 324 B 324 B
dist_client_...dev.js gzip 326 B 326 B
dist_client_...dev.js gzip 318 B 318 B
dist_client_...dev.js gzip 317 B 317 B
pages-api-tu...dev.js gzip 41.1 kB 41.1 kB
pages-api-tu..prod.js gzip 31.2 kB 31.2 kB
pages-api.ru...dev.js gzip 41 kB 41 kB
pages-api.ru..prod.js gzip 31.2 kB 31.2 kB
pages-turbo....dev.js gzip 50.8 kB 50.8 kB
pages-turbo...prod.js gzip 38.2 kB 38.2 kB
pages.runtim...dev.js gzip 50.7 kB 50.7 kB
pages.runtim..prod.js gzip 38.2 kB 38.2 kB
server.runti..prod.js gzip 62.2 kB 62.2 kB
Total 2.68 MB 2.68 MB

@mischnic mischnic merged commit a3b07ce into canary Jan 9, 2026
167 checks passed
@mischnic mischnic deleted the mischnic/new-nft-tests branch January 9, 2026 08:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants