Skip to content

Commit 90dcf32

Browse files
Update bundler production test manifest (#77273)
This auto-generated PR updates the production integration test manifest used when testing alternative bundlers.
1 parent c0e0502 commit 90dcf32

File tree

1 file changed

+73
-47
lines changed

1 file changed

+73
-47
lines changed

test/rspack-build-tests-manifest.json

+73-47
Original file line numberDiff line numberDiff line change
@@ -5217,6 +5217,7 @@
52175217
},
52185218
"test/e2e/app-dir/segment-cache/incremental-opt-in/segment-cache-incremental-opt-in.test.ts": {
52195219
"passed": [
5220+
"segment cache (incremental opt in) multiple prefetches to same link are deduped page with PPR disabled",
52205221
"segment cache (incremental opt in) multiple prefetches to same link are deduped page with PPR disabled, and has a loading boundary",
52215222
"segment cache (incremental opt in) multiple prefetches to same link are deduped page with PPR enabled",
52225223
"segment cache (incremental opt in) multiple prefetches to same link are deduped page with PPR enabled, and has a dynamic param",
@@ -5225,9 +5226,7 @@
52255226
"segment cache (incremental opt in) when prefetching with prefetch=true, refetches cache entries that only contain partial data",
52265227
"segment cache (incremental opt in) when prefetching with prefetch=true, refetches partial cache entries even if there's already a pending PPR request"
52275228
],
5228-
"failed": [
5229-
"segment cache (incremental opt in) multiple prefetches to same link are deduped page with PPR disabled"
5230-
],
5229+
"failed": [],
52315230
"pending": [],
52325231
"flakey": [],
52335232
"runtimeError": false
@@ -5595,7 +5594,10 @@
55955594
},
55965595
"test/e2e/app-dir/use-cache-custom-handler/use-cache-custom-handler.test.ts": {
55975596
"passed": [
5598-
"use-cache-custom-handler should use custom cache handler if provided"
5597+
"use-cache-custom-handler should revalidate using a legacy custom cache handler",
5598+
"use-cache-custom-handler should revalidate using a modern custom cache handler",
5599+
"use-cache-custom-handler should use a legacy custom cache handler if provided",
5600+
"use-cache-custom-handler should use a modern custom cache handler if provided"
55995601
],
56005602
"failed": [],
56015603
"pending": [],
@@ -5697,12 +5699,16 @@
56975699
"use-cache should error when cookies/headers/draftMode is used inside \"use cache\"",
56985700
"use-cache should match the expected revalidate and expire configs on the prerender manifest",
56995701
"use-cache should match the expected stale config in the page header",
5702+
"use-cache should not use stale caches in server actions that have revalidated",
57005703
"use-cache should override fetch with cookies/auth in use cache properly",
57015704
"use-cache should override fetch with no-store in use cache properly",
57025705
"use-cache should prerender fully cacheable pages as static HTML",
57035706
"use-cache should propagate unstable_cache tags correctly",
57045707
"use-cache should return the same object reference for multiple invocations",
5708+
"use-cache should revalidate before redirecting in a route handlers",
5709+
"use-cache should revalidate caches after redirect",
57055710
"use-cache should revalidate caches during on-demand revalidation",
5711+
"use-cache should revalidate caches nested in unstable_cache",
57065712
"use-cache should send an SWR cache-control header based on the revalidate and expire values",
57075713
"use-cache should update after unstable_expireTag correctly",
57085714
"use-cache should use revalidate config in fetch",
@@ -6657,6 +6663,28 @@
66576663
"flakey": [],
66586664
"runtimeError": false
66596665
},
6666+
"test/e2e/link-on-navigate-prop/index.test.ts": {
6667+
"passed": [
6668+
"<Link /> onNavigate prop App Router should only trigger both onClick for external links",
6669+
"<Link /> onNavigate prop App Router should only trigger onClick for download links",
6670+
"<Link /> onNavigate prop App Router should only trigger onClick for external links with target=\"_blank\"",
6671+
"<Link /> onNavigate prop App Router should prevent navigation when onNavigate calls preventDefault",
6672+
"<Link /> onNavigate prop App Router should replace history state for external links with replace prop",
6673+
"<Link /> onNavigate prop App Router should trigger both onClick and onNavigate for internal navigation",
6674+
"<Link /> onNavigate prop App Router should trigger onClick but not onNavigate when using modifier key",
6675+
"<Link /> onNavigate prop Pages Router should only trigger both onClick for external links",
6676+
"<Link /> onNavigate prop Pages Router should only trigger onClick for download links",
6677+
"<Link /> onNavigate prop Pages Router should only trigger onClick for external links with target=\"_blank\"",
6678+
"<Link /> onNavigate prop Pages Router should prevent navigation when onNavigate calls preventDefault",
6679+
"<Link /> onNavigate prop Pages Router should replace history state for external links with replace prop",
6680+
"<Link /> onNavigate prop Pages Router should trigger both onClick and onNavigate for internal navigation",
6681+
"<Link /> onNavigate prop Pages Router should trigger onClick but not onNavigate when using modifier key"
6682+
],
6683+
"failed": [],
6684+
"pending": [],
6685+
"flakey": [],
6686+
"runtimeError": false
6687+
},
66606688
"test/e2e/link-with-api-rewrite/index.test.ts": {
66616689
"passed": [
66626690
"link-with-api-rewrite should perform hard navigation for direct urls",
@@ -7279,11 +7307,10 @@
72797307
},
72807308
"test/e2e/next-config-warnings/esm-externals-false/esm-externals-false.test.ts": {
72817309
"passed": [
7310+
"next-config-warnings - esm-externals-false should contain esmExternals feature usage in telemetry",
72827311
"next-config-warnings - esm-externals-false should warn when using ESM externals: false"
72837312
],
7284-
"failed": [
7285-
"next-config-warnings - esm-externals-false should contain esmExternals feature usage in telemetry"
7286-
],
7313+
"failed": [],
72877314
"pending": [],
72887315
"flakey": [],
72897316
"runtimeError": false
@@ -8372,6 +8399,12 @@
83728399
},
83738400
"test/integration/amphtml-ssg/test/index.test.js": {
83748401
"passed": [
8402+
"AMP SSG Support development mode should load a hybrid amp page with query correctly",
8403+
"AMP SSG Support development mode should load a hybrid amp page without query correctly",
8404+
"AMP SSG Support development mode should load an amp first page correctly",
8405+
"AMP SSG Support development mode should load dynamic hybrid SSG/AMP page",
8406+
"AMP SSG Support development mode should load dynamic hybrid SSG/AMP page with query",
8407+
"AMP SSG Support development mode should load dynamic hybrid SSG/AMP page with trailing slash",
83758408
"AMP SSG Support export mode production mode should have copied SSG files correctly",
83768409
"AMP SSG Support production mode should load a hybrid amp page with query correctly",
83778410
"AMP SSG Support production mode should load a hybrid amp page without query correctly",
@@ -8382,32 +8415,25 @@
83828415
"AMP SSG Support production mode should output prerendered files correctly during build"
83838416
],
83848417
"failed": [],
8385-
"pending": [
8386-
"AMP SSG Support development mode should load a hybrid amp page with query correctly",
8387-
"AMP SSG Support development mode should load a hybrid amp page without query correctly",
8388-
"AMP SSG Support development mode should load an amp first page correctly",
8389-
"AMP SSG Support development mode should load dynamic hybrid SSG/AMP page",
8390-
"AMP SSG Support development mode should load dynamic hybrid SSG/AMP page with query",
8391-
"AMP SSG Support development mode should load dynamic hybrid SSG/AMP page with trailing slash"
8392-
],
8418+
"pending": [],
83938419
"flakey": [],
83948420
"runtimeError": false
83958421
},
83968422
"test/integration/amphtml/test/index.test.js": {
83978423
"passed": [
8398-
"AMP Usage production mode should not contain missing files warning",
8399-
"AMP Usage production mode should not have deprecation warning"
8400-
],
8401-
"failed": [
8424+
"AMP Usage AMP dev no-warn should not warn on valid amp",
8425+
"AMP Usage AMP development mode should add data-ampdevmode to development script tags",
8426+
"AMP Usage AMP development mode should detect amp validator warning on custom scripts",
8427+
"AMP Usage AMP development mode should detect amp validator warning on invalid amp",
8428+
"AMP Usage AMP development mode should navigate from non-AMP to AMP without error",
8429+
"AMP Usage AMP development mode should not contain missing files warning",
84028430
"AMP Usage production mode With AMP context should render nested AMP page with AMP hook",
84038431
"AMP Usage production mode With AMP context should render nested normal page with AMP hook",
84048432
"AMP Usage production mode With AMP context should render the AMP page that uses the AMP hook",
84058433
"AMP Usage production mode With AMP context should render the normal page that uses the AMP hook",
84068434
"AMP Usage production mode With basic AMP usage should auto import extensions",
84078435
"AMP Usage production mode With basic AMP usage should drop custom scripts",
84088436
"AMP Usage production mode With basic AMP usage should not drop custom amp scripts",
8409-
"AMP Usage production mode With basic AMP usage should not output client pages for AMP only",
8410-
"AMP Usage production mode With basic AMP usage should not output client pages for AMP only with config exported after declaration",
84118437
"AMP Usage production mode With basic AMP usage should optimize clean",
84128438
"AMP Usage production mode With basic AMP usage should render the page as valid AMP",
84138439
"AMP Usage production mode With basic AMP usage should render the page without leaving render target",
@@ -8423,20 +8449,20 @@
84238449
"AMP Usage production mode canonical amphtml should render the AMP page that uses the AMP hook",
84248450
"AMP Usage production mode combined styles should combine style tags",
84258451
"AMP Usage production mode combined styles should remove sourceMaps from styles",
8426-
"AMP Usage production mode should have amp optimizer in trace"
8452+
"AMP Usage production mode should have amp optimizer in trace",
8453+
"AMP Usage production mode should not contain missing files warning",
8454+
"AMP Usage production mode should not have deprecation warning"
8455+
],
8456+
"failed": [
8457+
"AMP Usage production mode With basic AMP usage should not output client pages for AMP only",
8458+
"AMP Usage production mode With basic AMP usage should not output client pages for AMP only with config exported after declaration"
84278459
],
84288460
"pending": [
8429-
"AMP Usage AMP dev no-warn should not warn on valid amp",
8430-
"AMP Usage AMP development mode should add data-ampdevmode to development script tags",
8431-
"AMP Usage AMP development mode should detect amp validator warning on custom scripts",
8432-
"AMP Usage AMP development mode should detect amp validator warning on invalid amp",
84338461
"AMP Usage AMP development mode should detect changes and refresh a hybrid AMP page",
84348462
"AMP Usage AMP development mode should detect changes and refresh an AMP page",
84358463
"AMP Usage AMP development mode should detect changes and refresh an AMP page at root pages/",
84368464
"AMP Usage AMP development mode should detect changes to component and refresh an AMP page",
84378465
"AMP Usage AMP development mode should detect the changes and display it",
8438-
"AMP Usage AMP development mode should navigate from non-AMP to AMP without error",
8439-
"AMP Usage AMP development mode should not contain missing files warning",
84408466
"AMP Usage AMP development mode should not reload unless the page is edited for an AMP page"
84418467
],
84428468
"flakey": [],
@@ -9322,12 +9348,13 @@
93229348
},
93239349
"test/integration/create-next-app/package-manager/bun.test.ts": {
93249350
"passed": [
9325-
"create-next-app with package manager bun should use bun for --use-bun flag",
93269351
"create-next-app with package manager bun should use bun for --use-bun flag with example",
93279352
"create-next-app with package manager bun should use bun when user-agent is bun",
93289353
"create-next-app with package manager bun should use bun when user-agent is bun with example"
93299354
],
9330-
"failed": [],
9355+
"failed": [
9356+
"create-next-app with package manager bun should use bun for --use-bun flag"
9357+
],
93319358
"pending": [],
93329359
"flakey": [],
93339360
"runtimeError": false
@@ -16705,15 +16732,16 @@
1670516732
"passed": [
1670616733
"server-side dev errors should show server-side error for api route correctly",
1670716734
"server-side dev errors should show server-side error for dynamic api route correctly",
16708-
"server-side dev errors should show server-side error for dynamic gssp page correctly",
1670916735
"server-side dev errors should show server-side error for gsp page correctly",
1671016736
"server-side dev errors should show server-side error for gssp page correctly",
1671116737
"server-side dev errors should show server-side error for uncaught empty exception correctly",
1671216738
"server-side dev errors should show server-side error for uncaught empty rejection correctly",
1671316739
"server-side dev errors should show server-side error for uncaught exception correctly",
1671416740
"server-side dev errors should show server-side error for uncaught rejection correctly"
1671516741
],
16716-
"failed": [],
16742+
"failed": [
16743+
"server-side dev errors should show server-side error for dynamic gssp page correctly"
16744+
],
1671716745
"pending": [],
1671816746
"flakey": [],
1671916747
"runtimeError": false
@@ -16824,30 +16852,29 @@
1682416852
"config telemetry production mode detects i18n and image configs for session start",
1682516853
"config telemetry production mode detects output config for session start",
1682616854
"config telemetry production mode detects rewrites, headers, and redirects for next build",
16855+
"config telemetry production mode emits telemery for usage of image, script & dynamic",
1682716856
"config telemetry production mode emits telemetry for `next lint`",
1682816857
"config telemetry production mode emits telemetry for configured React Compiler options",
1682916858
"config telemetry production mode emits telemetry for default React Compiler options",
1683016859
"config telemetry production mode emits telemetry for enabled React Compiler",
1683116860
"config telemetry production mode emits telemetry for lint during build",
1683216861
"config telemetry production mode emits telemetry for lint during build when '--no-lint' is specified",
1683316862
"config telemetry production mode emits telemetry for lint during build when 'ignoreDuringBuilds' is specified",
16863+
"config telemetry production mode emits telemetry for middleware related options",
1683416864
"config telemetry production mode emits telemetry for persistent cache in build mode",
1683516865
"config telemetry production mode emits telemetry for persistent cache in dev mode",
16866+
"config telemetry production mode emits telemetry for transpilePackages",
1683616867
"config telemetry production mode emits telemetry for usage of @vercel/og",
1683716868
"config telemetry production mode emits telemetry for usage of `experimental/dynamicIO`",
1683816869
"config telemetry production mode emits telemetry for usage of `nextScriptWorkers`",
1683916870
"config telemetry production mode emits telemetry for usage of `optimizeCss`",
1684016871
"config telemetry production mode emits telemetry for usage of middleware",
16841-
"config telemetry production mode emits telemetry for usage of swc plugins"
16842-
],
16843-
"failed": [
16844-
"config telemetry production mode emits telemery for usage of image, script & dynamic",
16845-
"config telemetry production mode emits telemetry for middleware related options",
16846-
"config telemetry production mode emits telemetry for transpilePackages",
1684716872
"config telemetry production mode emits telemetry for usage of next/legacy/image",
1684816873
"config telemetry production mode emits telemetry for usage of swc",
16874+
"config telemetry production mode emits telemetry for usage of swc plugins",
1684916875
"config telemetry production mode emits telemetry for useCache directive"
1685016876
],
16877+
"failed": [],
1685116878
"pending": [],
1685216879
"flakey": [],
1685316880
"runtimeError": false
@@ -16866,16 +16893,16 @@
1686616893
"Telemetry CLI production mode cli session: babel tooling config",
1686716894
"Telemetry CLI production mode cli session: custom babel config (plugin)",
1686816895
"Telemetry CLI production mode cli session: custom babel config (preset)",
16896+
"Telemetry CLI production mode cli session: next config with webpack",
1686916897
"Telemetry CLI production mode cli session: package.json custom babel config (plugin)",
1687016898
"Telemetry CLI production mode detect page counts correctly for `next build`",
1687116899
"Telemetry CLI production mode detect static 404 correctly for `next build`",
1687216900
"Telemetry CLI production mode detects correct cli session defaults",
16901+
"Telemetry CLI production mode detects isSrcDir dir correctly for `next build`",
1687316902
"Telemetry CLI production mode detects tests correctly for `next build`",
1687416903
"Telemetry CLI production mode logs completed `next build` with warnings"
1687516904
],
1687616905
"failed": [
16877-
"Telemetry CLI production mode cli session: next config with webpack",
16878-
"Telemetry CLI production mode detects isSrcDir dir correctly for `next build`",
1687916906
"Telemetry CLI production mode emits event when swc fails to load"
1688016907
],
1688116908
"pending": [],
@@ -17702,8 +17729,7 @@
1770217729
"test/production/app-dir/dynamic-io-cache-handlers/dynamic-io-cache-handlers.test.ts": {
1770317730
"passed": [
1770417731
"dynamic-io-cache-handlers should call expireTags on global default cache handler",
17705-
"dynamic-io-cache-handlers should call receiveExpiredTags on global default cache handler",
17706-
"dynamic-io-cache-handlers should call receiveExpiredTags on global default cache handler without tags if none are provided",
17732+
"dynamic-io-cache-handlers should call refreshTags on global default cache handler",
1770717733
"dynamic-io-cache-handlers should use global symbol for default cache handler"
1770817734
],
1770917735
"failed": [],
@@ -18059,8 +18085,8 @@
1805918085
"runtimeError": false
1806018086
},
1806118087
"test/production/deterministic-build/index.test.ts": {
18062-
"passed": ["deterministic build should have same md5 file across build"],
18063-
"failed": [],
18088+
"passed": [],
18089+
"failed": ["deterministic build should have same md5 file across build"],
1806418090
"pending": [],
1806518091
"flakey": [],
1806618092
"runtimeError": false
@@ -18398,11 +18424,11 @@
1839818424
"runtimeError": false
1839918425
},
1840018426
"test/production/next-font/telemetry.test.ts": {
18401-
"passed": [],
18402-
"failed": [
18427+
"passed": [
1840318428
"next/font unused telemetry should not send next/font/google and next/font/local usage event",
1840418429
"next/font used telemetry should send next/font/google and next/font/local usage event"
1840518430
],
18431+
"failed": [],
1840618432
"pending": [],
1840718433
"flakey": [],
1840818434
"runtimeError": false
@@ -18452,7 +18478,7 @@
1845218478
"Production Usage Dynamic import default behavior should bundle two css modules for nested components into one css file",
1845318479
"Production Usage Dynamic import default behavior should bundle two css modules for one dynamically imported component into one css file",
1845418480
"Production Usage Dynamic import default behavior should not remove css styles for same css file between page transitions",
18455-
"Production Usage Dynamic import default behavior should output two css files even in case of three css module files while one is shared across files",
18481+
"Production Usage Dynamic import default behavior should output correct css even in case of three css module files while one is shared across files",
1845618482
"Production Usage Dynamic import default behavior should render dynamic import components",
1845718483
"Production Usage Dynamic import default behavior should render even there are no physical chunk exists",
1845818484
"Production Usage Dynamic import default behavior should render one dynamically imported component and load its css files",

0 commit comments

Comments
 (0)