Skip to content

Commit

Permalink
Update Turbopack development test manifest (#64546)
Browse files Browse the repository at this point in the history
This auto-generated PR updates the development integration test manifest
used when testing Turbopack.
  • Loading branch information
vercel-release-bot authored Apr 16, 2024
1 parent 064788f commit abf3ca2
Showing 1 changed file with 126 additions and 41 deletions.
167 changes: 126 additions & 41 deletions test/turbopack-dev-tests-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@
"accumulateMetadata openGraph and twitter should fill twitter with partial existing openGraph metadata",
"accumulateMetadata openGraph and twitter should inherit metadata title description into openGraph or twitter if they are configured",
"accumulateMetadata openGraph and twitter should override openGraph or twitter images when current layer specifies social images properties",
"accumulateMetadata openGraph and twitter should prefer title and description from openGraph rather than metadata for twitter",
"accumulateMetadata openGraph and twitter should resolve relative url starting with ./ with pathname for openGraph.url",
"accumulateMetadata title should merge title with page title",
"accumulateMetadata title should merge title with parent layout ",
Expand Down Expand Up @@ -695,6 +696,19 @@
"flakey": [],
"runtimeError": false
},
"packages/next/src/server/lib/incremental-cache/shared-revalidate-timings.test.ts": {
"passed": [
"SharedRevalidateTimings should clear the in-memory cache",
"SharedRevalidateTimings should get revalidate timing from in-memory cache",
"SharedRevalidateTimings should get revalidate timing from prerender manifest if not in cache",
"SharedRevalidateTimings should return undefined if revalidate timing not found",
"SharedRevalidateTimings should set revalidate timing in cache"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"packages/next/src/server/lib/mock-request.test.ts": {
"passed": [
"MockedRequest should have the correct properties",
Expand All @@ -707,6 +721,33 @@
"flakey": [],
"runtimeError": false
},
"packages/next/src/server/lib/to-route.test.ts": {
"passed": [
"toRoute Function should remove trailing `/index`",
"toRoute Function should remove trailing slash",
"toRoute Function should return `/` when input is `/index/`",
"toRoute Function should return `/` when input is `/index`",
"toRoute Function should return `/` when input is empty",
"toRoute Function should return `/` when input is only a slash"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"packages/next/src/server/load-manifest.test.ts": {
"passed": [
"loadManifest should cache the manifest when not already cached",
"loadManifest should freeze the manifest when caching",
"loadManifest should load the manifest from the file system when not cached",
"loadManifest should return the cached manifest when available",
"loadManifest should throw an error when the manifest file cannot be read"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"packages/next/src/server/node-polyfill-crypto.test.ts": {
"passed": ["node-polyfill-crypto overwrite crypto"],
"failed": [],
Expand Down Expand Up @@ -759,6 +800,19 @@
"flakey": [],
"runtimeError": false
},
"packages/next/src/shared/lib/deep-freeze.test.ts": {
"passed": [
"freeze should freeze an array",
"freeze should freeze an object",
"freeze should freeze nested arrays",
"freeze should freeze nested objects",
"freeze should freeze nested objects and arrays"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"packages/next/src/shared/lib/get-hostname.test.ts": {
"passed": [
"getHostname from URL should return 127.0.0.1 for http://127.0.0.1",
Expand Down Expand Up @@ -2055,10 +2109,15 @@
"Client Navigation runtime errors should show redbox when a client side error is thrown inside a component",
"Client Navigation runtime errors should show redbox when a client side error is thrown outside a component",
"Client Navigation should emit routeChangeError on hash change cancel",
"Client Navigation should handle boolean async prop in next/head client-side: false",
"Client Navigation should handle boolean async prop in next/head client-side: true",
"Client Navigation should handle boolean async prop in next/script client-side: false",
"Client Navigation should handle boolean async prop in next/script client-side: true",
"Client Navigation should handle undefined prop in head client-side",
"Client Navigation should navigate to paths relative to the current page",
"Client Navigation should not error on module.exports + polyfills",
"Client Navigation should not reload when visiting /_error directly",
"Client Navigation should only execute async and defer scripts with next/script once",
"Client Navigation should scroll to top when the scroll option is set to true",
"Client Navigation should work on nested /index/index.js",
"Client Navigation updating head while client routing should not warn when application/ld+json scripts are in head",
Expand Down Expand Up @@ -2370,6 +2429,8 @@
"app-dir action handling should handle basic actions correctly",
"app-dir action handling should log a warning when a server action is not found but an id is provided",
"app-dir action handling should not block navigation events while a server action is in flight",
"app-dir action handling should not block router.back() while a server action is in flight",
"app-dir action handling should not log errors for non-action form POSTs",
"app-dir action handling should only submit action once when resubmitting an action after navigation",
"app-dir action handling should push new route when redirecting",
"app-dir action handling should report errors with bad inputs correctly",
Expand Down Expand Up @@ -2712,6 +2773,15 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/app-routes-client-component/app-routes-client-component.test.ts": {
"passed": [
"referencing a client component in an app route responds without error"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/app-routes-subrequests/app-routes-subrequests.test.ts": {
"passed": ["app-routes-subrequests shortcuts after 5 subrequests"],
"failed": [],
Expand Down Expand Up @@ -3133,6 +3203,7 @@
"app dir - basic server components should serve client component should serve client-side",
"app dir - basic server components should serve client component should serve server-side",
"app dir - basic server components should serve shared component",
"app dir - basic should encode chunk path correctly",
"app dir - basic should ensure the </body></html> suffix is at the end of the stream",
"app dir - basic should handle hash in initial url",
"app dir - basic should have correct searchParams and params (client)",
Expand Down Expand Up @@ -3166,7 +3237,6 @@
"app dir - basic template component should render the template that holds state in a client component and reset on navigation"
],
"failed": [
"app dir - basic should encode chunk path correctly",
"app dir - basic should serve polyfills for browsers that do not support modules"
],
"pending": [
Expand Down Expand Up @@ -3204,16 +3274,6 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/app/vercel-speed-insights.test.ts": {
"passed": [],
"failed": [],
"pending": [
"vercel speed insights with assetPrefix Vercel analytics should send web vitals to Vercel analytics",
"vercel speed insights without assetPrefix Vercel analytics should send web vitals to Vercel analytics"
],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/asset-prefix-with-basepath/asset-prefix-with-basepath.test.ts": {
"passed": [
"app-dir assetPrefix with basePath handling bundles should return 200 on served assetPrefix",
Expand Down Expand Up @@ -3439,6 +3499,17 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/dynamic-css/index.test.ts": {
"passed": [
"app dir - dynamic css should only apply corresponding css for page loaded that /another",
"app dir - dynamic css should only apply corresponding css for page loaded that /ssr",
"app dir - dynamic css should preload css of dynamic component during SSR"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/dynamic-data/dynamic-data.test.ts": {
"passed": [
"dynamic-data inside cache scope displays redbox when accessing dynamic data inside a cache scope",
Expand Down Expand Up @@ -3781,6 +3852,18 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/loader-file-named-export-custom-loader-error/loader-file-named-export-custom-loader-error.test.ts": {
"passed": [
"Error test if the loader file export a named function in Development development only should show the error when using `Image` component",
"Error test if the loader file export a named function in Development development only should show the error when using `getImageProps` method"
],
"failed": [],
"pending": [
"Error test if the loader file export a named function in Build and Start build and start only should show the build error"
],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/logging/fetch-logging.test.ts": {
"passed": [
"app-dir - logging with default logging should not contain metadata internal segments for dynamic metadata routes",
Expand Down Expand Up @@ -4188,6 +4271,17 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/not-found/multi-root-layout/index.test.ts": {
"passed": [
"not-found-multi-root-layout should render main not-found",
"not-found-multi-root-layout should render root not-found for uncaught routes",
"not-found-multi-root-layout should render sub not-found"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/pages-to-app-routing/pages-to-app-routing.test.ts": {
"passed": ["pages-to-app-routing should work using browser"],
"failed": [],
Expand Down Expand Up @@ -4436,6 +4530,10 @@
"ppr-full HTML Response for /loading/c should cache the static part",
"ppr-full HTML Response for /loading/c should have correct headers",
"ppr-full HTML Response for /loading/c should resume with dynamic content",
"ppr-full HTML Response for /metadata should allow navigations to and from a pages/ page",
"ppr-full HTML Response for /metadata should cache the static part",
"ppr-full HTML Response for /metadata should have correct headers",
"ppr-full HTML Response for /metadata should resume with dynamic content",
"ppr-full HTML Response for /nested/a should allow navigations to and from a pages/ page",
"ppr-full HTML Response for /nested/a should cache the static part",
"ppr-full HTML Response for /nested/a should have correct headers",
Expand Down Expand Up @@ -4479,12 +4577,14 @@
"ppr-full HTML Response for /static should allow navigations to and from a pages/ page",
"ppr-full HTML Response for /static should have correct headers",
"ppr-full HTML Response for /static should not contain dynamic content",
"ppr-full Metadata should set the right metadata when generateMetadata uses dynamic APIs",
"ppr-full Navigation Signals notFound() for /navigation/not-found should have correct headers",
"ppr-full Navigation Signals notFound() for /navigation/not-found/dynamic should cache the static part",
"ppr-full Navigation Signals notFound() for /navigation/not-found/dynamic should have correct headers",
"ppr-full Navigation Signals redirect() for /navigation/redirect should have correct headers",
"ppr-full Navigation Signals redirect() for /navigation/redirect/dynamic should cache the static part",
"ppr-full Navigation Signals redirect() for /navigation/redirect/dynamic should have correct headers"
"ppr-full Navigation Signals redirect() for /navigation/redirect/dynamic should have correct headers",
"ppr-full Test Setup has all the test pathnames listed in the links component"
],
"failed": [],
"pending": [],
Expand Down Expand Up @@ -4568,6 +4668,18 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/resource-url-encoding/resource-url-encoding.test.ts": {
"passed": [
"scripts encodes characters in app router",
"scripts encodes characters in pages router",
"styles encodes characters in app router",
"styles encodes characters in pages router"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/revalidate-dynamic/revalidate-dynamic.test.ts": {
"passed": [
"app-dir revalidate-dynamic should revalidate the data with /api/revalidate-path",
Expand Down Expand Up @@ -5276,13 +5388,6 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/weird-chars-in-scripts/weird-chars-in-scripts.test.ts": {
"passed": ["weird chars in scripts should load in the browser"],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/with-babel/with-babel.test.ts": {
"passed": [],
"failed": [],
Expand Down Expand Up @@ -10057,7 +10162,8 @@
"Next Lint shows warnings and errors when extending plugin core-web-vitals config",
"Next Lint shows warnings and errors when extending plugin recommended config",
"Next Lint shows warnings and errors with next/core-web-vitals config",
"Next Lint success message when no warnings or errors"
"Next Lint success message when no warnings or errors",
"Next Lint verify options name and type with auto-generated help output"
],
"failed": [],
"pending": [],
Expand Down Expand Up @@ -15125,27 +15231,6 @@
"flakey": [],
"runtimeError": false
},
"test/integration/relay-analytics-disabled/test/index.test.js": {
"passed": [],
"failed": [],
"pending": [
"Analytics relayer (disabled) production mode Does not include the code",
"Analytics relayer (disabled) production mode Does not relay any data"
],
"flakey": [],
"runtimeError": false
},
"test/integration/relay-analytics/test/index.test.js": {
"passed": [],
"failed": [],
"pending": [
"Analytics relayer with exported method production mode Relays the data to user code",
"Analytics relayer with exported method production mode reports INP metric",
"Analytics relayer with exported method production mode reports attribution"
],
"flakey": [],
"runtimeError": false
},
"test/integration/relay-graphql-swc-multi-project/test/index.test.js": {
"passed": [],
"failed": [],
Expand Down

0 comments on commit abf3ca2

Please sign in to comment.