Skip to content

Commit 5c5207d

Browse files
Update bundler development test manifest (#77364)
This auto-generated PR updates the development integration test manifest used when testing alternative bundlers.
1 parent 31dc938 commit 5c5207d

File tree

1 file changed

+65
-29
lines changed

1 file changed

+65
-29
lines changed

test/rspack-dev-tests-manifest.json

+65-29
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,7 @@
808808
"packages/next/src/lib/load-custom-routes.test.ts": {
809809
"passed": [
810810
"loadCustomRoutes rewrites array rewrites should be added to afterFiles",
811+
"loadCustomRoutes rewrites assetPrefix automatically insert assetPrefix rewrite for /_next/ paths when assetPrefix is absolute URL with a path",
811812
"loadCustomRoutes rewrites assetPrefix automatically inserts assetPrefix rewrite for /_next/ paths",
812813
"loadCustomRoutes rewrites assetPrefix automatically inserts assetPrefix rewrite for /_next/ paths for basePath",
813814
"loadCustomRoutes rewrites assetPrefix automatically inserts assetPrefix rewrite for /_next/ paths when rewrites() is not present",
@@ -823,9 +824,19 @@
823824
},
824825
"packages/next/src/lib/metadata/is-metadata-route.test.ts": {
825826
"passed": [
826-
"getExtensionRegexString with dynamic extensions should match dynamic multi-routes with dynamic extensions",
827+
"getExtensionRegexString with dynamic extensions should not handle js extensions with empty dynamic extensions",
828+
"getExtensionRegexString with dynamic extensions should not handle js extensions with passing null for dynamic extensions",
827829
"getExtensionRegexString with dynamic extensions should return the correct regex",
828-
"getExtensionRegexString without dynamic extensions should return the correct regex"
830+
"getExtensionRegexString without dynamic extensions should return the correct regex",
831+
"isMetadataPage should match metadata page path",
832+
"isMetadataPage should not match app router page path or error boundary path",
833+
"isMetadataRoute should match grouped metadata routes",
834+
"isMetadataRoute should match metadata routes",
835+
"isMetadataRoute should require suffix for metadata routes",
836+
"isMetadataRoute should support metadata variant numeric suffix",
837+
"isMetadataRouteFile match file - with extension should match dynamic metadata routes",
838+
"isMetadataRouteFile match file - with extension should match static metadata route files",
839+
"isMetadataRouteFile match route - without extension should match metadata route page paths"
829840
],
830841
"failed": [],
831842
"pending": [],
@@ -2852,6 +2863,7 @@
28522863
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should recover from 404 after a page has been added",
28532864
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should recover from 404 after a page has been added with dynamic segments",
28542865
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should recover from errors in getInitialProps in client",
2866+
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should recover from errors in the render function",
28552867
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should show the error on all pages",
28562868
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '/asset-prefix' } should have client HMR events in trace file",
28572869
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '/asset-prefix' } should recover after a bad return from the render function",
@@ -2878,7 +2890,6 @@
28782890
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should detect syntax errors and recover",
28792891
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should not continously poll a custom error page",
28802892
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should recover after loader parse error in an imported file",
2881-
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '' } should recover from errors in the render function",
28822893
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '/asset-prefix' } should detect runtime errors on the module scope",
28832894
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '/asset-prefix' } should detect syntax errors and recover",
28842895
"HMR - Error Recovery, nextConfig: { basePath: '/docs', assetPrefix: '/asset-prefix' } should not continously poll a custom error page",
@@ -3819,7 +3830,6 @@
38193830
"app-dir action handling Edge SSR should handle calls to redirect() with a relative URL in a single pass",
38203831
"app-dir action handling Edge SSR should handle calls to redirect() with external URLs",
38213832
"app-dir action handling Edge SSR should return error response for hoc auth wrappers in edge runtime",
3822-
"app-dir action handling HMR should support updating the action",
38233833
"app-dir action handling caching disabled by default should not override force-cache in server action",
38243834
"app-dir action handling caching disabled by default should not override revalidate in server action",
38253835
"app-dir action handling caching disabled by default should use no-store as default for server action",
@@ -3838,7 +3848,6 @@
38383848
"app-dir action handling fetch actions should revalidate when cookies.set is called",
38393849
"app-dir action handling fetch actions should revalidate when cookies.set is called in a client action",
38403850
"app-dir action handling fetch actions should store revalidation data in the prefetch cache",
3841-
"app-dir action handling redirects displays searchParams correctly when redirecting with SearchParams",
38423851
"app-dir action handling redirects merges cookies correctly when redirecting",
38433852
"app-dir action handling redirects redirects properly when server action handler redirects with a 307 status code",
38443853
"app-dir action handling redirects redirects properly when server action handler redirects with a 308 status code",
@@ -3853,7 +3862,6 @@
38533862
"app-dir action handling should be possible to catch regular errors",
38543863
"app-dir action handling should bundle external libraries if they are on the action layer",
38553864
"app-dir action handling should forward action request to a worker that contains the action handler (edge)",
3856-
"app-dir action handling should forward action request to a worker that contains the action handler (node)",
38573865
"app-dir action handling should handle action correctly with middleware rewrite",
38583866
"app-dir action handling should handle actions executed in quick succession",
38593867
"app-dir action handling should handle basic actions correctly",
@@ -3894,7 +3902,10 @@
38943902
"app-dir action handling should work with interception routes"
38953903
],
38963904
"failed": [
3897-
"app-dir action handling Edge SSR should handle unicode search params"
3905+
"app-dir action handling Edge SSR should handle unicode search params",
3906+
"app-dir action handling HMR should support updating the action",
3907+
"app-dir action handling redirects displays searchParams correctly when redirecting with SearchParams",
3908+
"app-dir action handling should forward action request to a worker that contains the action handler (node)"
38983909
],
38993910
"pending": [
39003911
"app-dir action handling fetch actions should handle unstable_expireTag + redirect",
@@ -4139,6 +4150,7 @@
41394150
"app dir - external dependency react in external esm packages should support namespace import with ESM packages",
41404151
"app dir - external dependency react in external esm packages should use the same react in client app",
41414152
"app dir - external dependency react in external esm packages should use the same react in edge server app",
4153+
"app dir - external dependency react in external esm packages should use the same react in pages",
41424154
"app dir - external dependency react in external esm packages should use the same react in server app",
41434155
"app dir - external dependency server actions should compile server actions from node_modules in client components",
41444156
"app dir - external dependency server actions should prefer to resolve esm over cjs for bundling optout packages",
@@ -4154,15 +4166,13 @@
41544166
"app dir - external dependency should not apply swc optimizer transform for external packages in browser layer in web worker",
41554167
"app dir - external dependency should resolve 3rd party package exports based on the react-server condition",
41564168
"app dir - external dependency should resolve the subset react in server components based on the react-server condition",
4169+
"app dir - external dependency should support client module references with SSR-only ESM externals",
41574170
"app dir - external dependency should support exporting multiple star re-exports",
41584171
"app dir - external dependency should transpile specific external packages with the `transpilePackages` option",
41594172
"app dir - external dependency should use the same async storages if imported directly",
41604173
"app dir - external dependency should use the same export type for packages in both ssr and client"
41614174
],
4162-
"failed": [
4163-
"app dir - external dependency react in external esm packages should use the same react in pages",
4164-
"app dir - external dependency should support client module references with SSR-only ESM externals"
4165-
],
4175+
"failed": [],
41664176
"pending": [],
41674177
"flakey": [],
41684178
"runtimeError": false
@@ -4869,6 +4879,15 @@
48694879
"flakey": [],
48704880
"runtimeError": false
48714881
},
4882+
"test/e2e/app-dir/asset-prefix-absolute/asset-prefix-absolute.test.ts": {
4883+
"passed": [
4884+
"app-dir absolute assetPrefix bundles should return 200 on served assetPrefix"
4885+
],
4886+
"failed": [],
4887+
"pending": [],
4888+
"flakey": [],
4889+
"runtimeError": false
4890+
},
48724891
"test/e2e/app-dir/asset-prefix-with-basepath/asset-prefix-with-basepath.test.ts": {
48734892
"passed": [
48744893
"app-dir assetPrefix with basePath handling bundles should return 200 on served assetPrefix",
@@ -5358,10 +5377,10 @@
53585377
"runtimeError": false
53595378
},
53605379
"test/e2e/app-dir/dynamic-import/dynamic-import.test.ts": {
5361-
"passed": [],
5362-
"failed": [
5380+
"passed": [
53635381
"dynamic-import should render the dynamically imported component"
53645382
],
5383+
"failed": [],
53655384
"pending": [],
53665385
"flakey": [],
53675386
"runtimeError": false
@@ -6220,6 +6239,7 @@
62206239
"app-dir - logging with fetches verbose logging should log each page request only once",
62216240
"app-dir - logging with fetches verbose logging should log requests for client-side navigations",
62226241
"app-dir - logging with fetches verbose logging should log requests with correct indentation",
6242+
"app-dir - logging with fetches verbose logging should not contain metadata internal segments for dynamic metadata routes",
62236243
"app-dir - logging with fetches verbose logging should not contain trailing word page for app router routes",
62246244
"app-dir - logging with fetches verbose logging should not limit the number of requests that are logged",
62256245
"app-dir - logging with fetches verbose logging should not log _rsc query for client navigation RSC request",
@@ -6245,7 +6265,6 @@
62456265
"failed": [
62466266
"app-dir - logging with default logging should not contain metadata internal segments for dynamic metadata routes",
62476267
"app-dir - logging with fetches default logging should not contain metadata internal segments for dynamic metadata routes",
6248-
"app-dir - logging with fetches verbose logging should not contain metadata internal segments for dynamic metadata routes",
62496268
"app-dir - logging with verbose logging for edge runtime should not contain metadata internal segments for dynamic metadata routes"
62506269
],
62516270
"pending": [],
@@ -6395,6 +6414,16 @@
63956414
"flakey": [],
63966415
"runtimeError": false
63976416
},
6417+
"test/e2e/app-dir/metadata-route-like-pages/metadata-route-like-pages.test.ts": {
6418+
"passed": [
6419+
"metadata-route-like-pages should able to visit icon page",
6420+
"metadata-route-like-pages should able to visit sitemap page"
6421+
],
6422+
"failed": [],
6423+
"pending": [],
6424+
"flakey": [],
6425+
"runtimeError": false
6426+
},
63986427
"test/e2e/app-dir/metadata-static-generation/metadata-static-generation.test.ts": {
63996428
"passed": [
64006429
"app-dir - metadata-static-generation should contain async generated metadata in body for dynamic page",
@@ -6643,7 +6672,6 @@
66436672
"app dir - navigation hash-with-scroll-offset should scroll to the specified hash",
66446673
"app dir - navigation locale warnings should have no warnings in pages router",
66456674
"app dir - navigation locale warnings should warn about using the `locale` prop with `next/link` in app router",
6646-
"app dir - navigation middleware redirect should change browser location when router.refresh() gets a redirect response",
66476675
"app dir - navigation navigating to a page with async metadata shows a fallback when prefetch completed",
66486676
"app dir - navigation navigating to a page with async metadata shows a fallback when prefetch was pending",
66496677
"app dir - navigation navigating to dynamic params & changing the casing should load the page correctly",
@@ -6681,9 +6709,13 @@
66816709
"app dir - navigation relative hashes and queries should work with a hash-only href",
66826710
"app dir - navigation relative hashes and queries should work with a query-only href",
66836711
"app dir - navigation relative hashes and queries should work with both relative hashes and queries",
6684-
"app dir - navigation scroll restoration should restore original scroll position when navigating back"
6712+
"app dir - navigation scroll restoration should restore original scroll position when navigating back",
6713+
"app dir - navigation useRouter identity between navigations should preserve identity when navigating to the same page"
6714+
],
6715+
"failed": [
6716+
"app dir - navigation middleware redirect should change browser location when router.refresh() gets a redirect response",
6717+
"app dir - navigation useRouter identity between navigations should preserve identity when navigating between different pages"
66856718
],
6686-
"failed": [],
66876719
"pending": [],
66886720
"flakey": [],
66896721
"runtimeError": false
@@ -7264,7 +7296,6 @@
72647296
"parallel-routes-and-interception parallel routes should support parallel route tab bars",
72657297
"parallel-routes-and-interception parallel routes should support parallel routes with no page component",
72667298
"parallel-routes-and-interception parallel routes should throw a 404 when no matching parallel route is found",
7267-
"parallel-routes-and-interception route intercepting should intercept on routes that contain hyphenated/special dynamic params",
72687299
"parallel-routes-and-interception route intercepting should re-render the layout on the server when it had a default child route",
72697300
"parallel-routes-and-interception route intercepting should render an intercepted route at the top level from a nested path",
72707301
"parallel-routes-and-interception route intercepting should render an intercepted route from a slot",
@@ -7278,7 +7309,9 @@
72787309
"parallel-routes-and-interception route intercepting with dynamic routes should render intercepted route",
72797310
"parallel-routes-and-interception-conflicting-pages should gracefully handle when two page segments match the `children` parallel slot"
72807311
],
7281-
"failed": [],
7312+
"failed": [
7313+
"parallel-routes-and-interception route intercepting should intercept on routes that contain hyphenated/special dynamic params"
7314+
],
72827315
"pending": [],
72837316
"flakey": [],
72847317
"runtimeError": false
@@ -7996,12 +8029,12 @@
79968029
"app dir - rsc basics should support streaming for flight response",
79978030
"app dir - rsc basics should suspense next/image in server components",
79988031
"app dir - rsc basics should suspense next/legacy/image in server components",
8032+
"app dir - rsc basics should track client components in dynamic imports",
79998033
"app dir - rsc basics should use canary react for app"
80008034
],
80018035
"failed": [
80028036
"app dir - rsc basics should be able to call legacy react-dom/server APIs in client components",
8003-
"app dir - rsc basics should be able to navigate between rsc routes",
8004-
"app dir - rsc basics should track client components in dynamic imports"
8037+
"app dir - rsc basics should be able to navigate between rsc routes"
80058038
],
80068039
"pending": [
80078040
"app dir - rsc basics should support partial hydration with inlined server data in browser"
@@ -9448,12 +9481,12 @@
94489481
},
94499482
"test/e2e/esm-externals/esm-externals.test.ts": {
94509483
"passed": [
9451-
"esm-externals app dir url /client should render the correct page"
9452-
],
9453-
"failed": [
9484+
"esm-externals app dir url /client should render the correct page",
94549485
"esm-externals app dir url /client should return the correct SSR HTML",
94559486
"esm-externals app dir url /server should render the correct page",
9456-
"esm-externals app dir url /server should return the correct SSR HTML",
9487+
"esm-externals app dir url /server should return the correct SSR HTML"
9488+
],
9489+
"failed": [
94579490
"esm-externals pages url /ssg should render the correct page",
94589491
"esm-externals pages url /ssg should return the correct SSR HTML",
94599492
"esm-externals pages url /ssr should render the correct page",
@@ -11059,8 +11092,11 @@
1105911092
"runtimeError": false
1106011093
},
1106111094
"test/e2e/react-dnd-compile/react-dnd-compile.test.ts": {
11062-
"passed": ["react-dnd-compile should work"],
11063-
"failed": ["react-dnd-compile should work on react-dnd import page"],
11095+
"passed": [
11096+
"react-dnd-compile should work",
11097+
"react-dnd-compile should work on react-dnd import page"
11098+
],
11099+
"failed": [],
1106411100
"pending": [],
1106511101
"flakey": [],
1106611102
"runtimeError": false
@@ -11565,10 +11601,10 @@
1156511601
"runtimeError": false
1156611602
},
1156711603
"test/integration/amp-export-validation/test/index.test.js": {
11568-
"passed": [
11604+
"passed": [],
11605+
"failed": [
1156911606
"AMP Validation on Export production mode should have shown errors during build"
1157011607
],
11571-
"failed": [],
1157211608
"pending": [
1157311609
"AMP Validation on Export production mode shows AMP warning without throwing error",
1157411610
"AMP Validation on Export production mode shows warning and error when throwing error",

0 commit comments

Comments
 (0)