Skip to content

Commit 35c490a

Browse files
update/turbopack-manifest-1716275088209
1 parent af49a5b commit 35c490a

File tree

1 file changed

+133
-27
lines changed

1 file changed

+133
-27
lines changed

test/turbopack-dev-tests-manifest.json

Lines changed: 133 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,22 @@
428428
"flakey": [],
429429
"runtimeError": false
430430
},
431+
"packages/next/src/server/after/after-context.test.ts": {
432+
"passed": [
433+
"createAfterContext does not hang forever if onClose failed",
434+
"createAfterContext runs after() callbacks added within an after()",
435+
"createAfterContext runs after() callbacks from a run() callback that resolves",
436+
"createAfterContext runs after() callbacks from a run() callback that streams",
437+
"createAfterContext runs after() callbacks from a run() callback that throws",
438+
"createAfterContext runs all after() callbacks even if some of them threw",
439+
"createAfterContext throws from after() if onClose is not provided",
440+
"createAfterContext throws from after() if waitUntil is not provided"
441+
],
442+
"failed": [],
443+
"pending": [],
444+
"flakey": [],
445+
"runtimeError": false
446+
},
431447
"packages/next/src/server/app-render/csrf-protection.test.ts": {
432448
"passed": [
433449
"isCsrfOriginAllowed should return false when allowedOrigins contains originDomain with non-matching pattern",
@@ -453,6 +469,17 @@
453469
"flakey": [],
454470
"runtimeError": false
455471
},
472+
"packages/next/src/server/base-http/web.test.ts": {
473+
"passed": [
474+
"WebNextResponse onClose doesn't track onClose unless enabled",
475+
"WebNextResponse onClose stream body",
476+
"WebNextResponse onClose string body"
477+
],
478+
"failed": [],
479+
"pending": [],
480+
"flakey": [],
481+
"runtimeError": false
482+
},
456483
"packages/next/src/server/config.test.ts": {
457484
"passed": [
458485
"loadConfig nextConfig.images defaults should assign a `images.remotePatterns` when using assetPrefix",
@@ -1471,7 +1498,8 @@
14711498
"test/development/acceptance/server-component-compiler-errors-in-pages.test.ts": {
14721499
"passed": [
14731500
"Error Overlay for server components compiler errors in pages importing 'next/headers' in pages",
1474-
"Error Overlay for server components compiler errors in pages importing 'server-only' in pages"
1501+
"Error Overlay for server components compiler errors in pages importing 'server-only' in pages",
1502+
"Error Overlay for server components compiler errors in pages importing unstable_after from 'next/server' in pages"
14751503
],
14761504
"failed": [],
14771505
"pending": [],
@@ -4282,6 +4310,7 @@
42824310
"app dir - navigation hash should scroll to the specified hash",
42834311
"app dir - navigation hash-link-back-to-same-page should scroll to the specified hash",
42844312
"app dir - navigation hash-with-scroll-offset should scroll to the specified hash",
4313+
"app dir - navigation middleware redirect should change browser location when router.refresh() gets a redirect response",
42854314
"app dir - navigation navigating to a page with async metadata should render the final state of the page with correct metadata",
42864315
"app dir - navigation navigating to dynamic params & changing the casing should load the page correctly",
42874316
"app dir - navigation navigation between pages and app should not contain _rsc query while navigating from app to pages",
@@ -4325,6 +4354,54 @@
43254354
"flakey": [],
43264355
"runtimeError": false
43274356
},
4357+
"test/e2e/app-dir/next-after-app/index.test.ts": {
4358+
"passed": [
4359+
"unstable_after() in edge runtime does not allow modifying cookies in a callback",
4360+
"unstable_after() in edge runtime interrupted RSC renders runs callbacks if a user error was thrown in the RSC render",
4361+
"unstable_after() in edge runtime interrupted RSC renders runs callbacks if notFound() was called",
4362+
"unstable_after() in edge runtime interrupted RSC renders runs callbacks if redirect() was called",
4363+
"unstable_after() in edge runtime invalid usages errors at compile time when used in a client module",
4364+
"unstable_after() in edge runtime invalid usages errors at compile time with dynamic = \"error\"",
4365+
"unstable_after() in edge runtime invalid usages errors at compile time with dynamic = \"force-static\"",
4366+
"unstable_after() in edge runtime only runs callbacks after the response is fully sent",
4367+
"unstable_after() in edge runtime runs callbacks from nested unstable_after calls",
4368+
"unstable_after() in edge runtime runs in dynamic pages",
4369+
"unstable_after() in edge runtime runs in dynamic route handlers",
4370+
"unstable_after() in edge runtime runs in generateMetadata()",
4371+
"unstable_after() in edge runtime runs in middleware",
4372+
"unstable_after() in edge runtime runs in server actions",
4373+
"unstable_after() in nodejs runtime does not allow modifying cookies in a callback",
4374+
"unstable_after() in nodejs runtime interrupted RSC renders runs callbacks if a user error was thrown in the RSC render",
4375+
"unstable_after() in nodejs runtime interrupted RSC renders runs callbacks if notFound() was called",
4376+
"unstable_after() in nodejs runtime interrupted RSC renders runs callbacks if redirect() was called",
4377+
"unstable_after() in nodejs runtime invalid usages errors at compile time when used in a client module",
4378+
"unstable_after() in nodejs runtime invalid usages errors at compile time with dynamic = \"error\"",
4379+
"unstable_after() in nodejs runtime invalid usages errors at compile time with dynamic = \"force-static\"",
4380+
"unstable_after() in nodejs runtime only runs callbacks after the response is fully sent",
4381+
"unstable_after() in nodejs runtime runs callbacks from nested unstable_after calls",
4382+
"unstable_after() in nodejs runtime runs in dynamic pages",
4383+
"unstable_after() in nodejs runtime runs in dynamic route handlers",
4384+
"unstable_after() in nodejs runtime runs in generateMetadata()",
4385+
"unstable_after() in nodejs runtime runs in middleware",
4386+
"unstable_after() in nodejs runtime runs in server actions"
4387+
],
4388+
"failed": [],
4389+
"pending": [],
4390+
"flakey": [],
4391+
"runtimeError": false
4392+
},
4393+
"test/e2e/app-dir/next-after-pages/index.test.ts": {
4394+
"passed": [
4395+
"unstable_after() - pages invalid usages errors at compile time when used in pages dir errors when used in getServerSideProps",
4396+
"unstable_after() - pages invalid usages errors at compile time when used in pages dir errors when used in getStaticProps",
4397+
"unstable_after() - pages invalid usages errors at compile time when used in pages dir errors when used in within a page component",
4398+
"unstable_after() - pages runs in middleware"
4399+
],
4400+
"failed": [],
4401+
"pending": [],
4402+
"flakey": [],
4403+
"runtimeError": false
4404+
},
43284405
"test/e2e/app-dir/next-config/index.test.ts": {
43294406
"passed": [
43304407
"app dir - next config should support importing webpack in next.config"
@@ -4462,6 +4539,19 @@
44624539
"flakey": [],
44634540
"runtimeError": false
44644541
},
4542+
"test/e2e/app-dir/options-request/options-request.test.ts": {
4543+
"passed": [
4544+
"options-request should 404 for an OPTIONS request to a non-existent route",
4545+
"options-request should respond with a 200 + response body when invoking a pages API route with an OPTIONS request",
4546+
"options-request should respond with a 204 No Content when invoking an app route handler with an OPTIONS request",
4547+
"options-request should return a 400 status code when invoking /app-page with an OPTIONS request",
4548+
"options-request should return a 400 status code when invoking /pages-page with an OPTIONS request"
4549+
],
4550+
"failed": [],
4551+
"pending": [],
4552+
"flakey": [],
4553+
"runtimeError": false
4554+
},
44654555
"test/e2e/app-dir/pages-to-app-routing/pages-to-app-routing.test.ts": {
44664556
"passed": ["pages-to-app-routing should work using browser"],
44674557
"failed": [],
@@ -4871,6 +4961,15 @@
48714961
"flakey": [],
48724962
"runtimeError": false
48734963
},
4964+
"test/e2e/app-dir/prefetch-searchparam/prefetch-searchparam.test.ts": {
4965+
"passed": [
4966+
"prefetch-searchparam should set prefetch cache properly on different search params"
4967+
],
4968+
"failed": [],
4969+
"pending": [],
4970+
"flakey": [],
4971+
"runtimeError": false
4972+
},
48744973
"test/e2e/app-dir/prefetching-not-found/prefetching-not-found.test.ts": {
48754974
"passed": [
48764975
"prefetching-not-found should correctly navigate to/from a global 404 page when following links with prefetch=auto"
@@ -8708,53 +8807,49 @@
87088807
"runtimeError": false
87098808
},
87108809
"test/integration/create-next-app/package-manager/bun.test.ts": {
8711-
"passed": [
8712-
"should use bun for --use-bun flag with example",
8713-
"should use bun when user-agent is bun",
8714-
"should use bun when user-agent is bun with example"
8715-
],
8810+
"passed": [],
87168811
"failed": [],
87178812
"pending": [
8718-
"create-next-app with package manager bun should use bun for --use-bun flag"
8813+
"create-next-app with package manager bun should use bun for --use-bun flag",
8814+
"create-next-app with package manager bun should use bun for --use-bun flag with example",
8815+
"create-next-app with package manager bun should use bun when user-agent is bun",
8816+
"create-next-app with package manager bun should use bun when user-agent is bun with example"
87198817
],
87208818
"flakey": [],
87218819
"runtimeError": false
87228820
},
87238821
"test/integration/create-next-app/package-manager/npm.test.ts": {
8724-
"passed": [
8725-
"should use npm for --use-npm flag with example",
8726-
"should use npm when user-agent is npm",
8727-
"should use npm when user-agent is npm with example"
8728-
],
8822+
"passed": [],
87298823
"failed": [],
87308824
"pending": [
8731-
"create-next-app with package manager npm should use npm for --use-npm flag"
8825+
"create-next-app with package manager npm should use npm for --use-npm flag",
8826+
"create-next-app with package manager npm should use npm for --use-npm flag with example",
8827+
"create-next-app with package manager npm should use npm when user-agent is npm",
8828+
"create-next-app with package manager npm should use npm when user-agent is npm with example"
87328829
],
87338830
"flakey": [],
87348831
"runtimeError": false
87358832
},
87368833
"test/integration/create-next-app/package-manager/pnpm.test.ts": {
8737-
"passed": [
8738-
"should use pnpm for --use-pnpm flag with example",
8739-
"should use pnpm when user-agent is pnpm",
8740-
"should use pnpm when user-agent is pnpm with example"
8741-
],
8834+
"passed": [],
87428835
"failed": [],
87438836
"pending": [
8744-
"create-next-app with package manager pnpm should use pnpm for --use-pnpm flag"
8837+
"create-next-app with package manager pnpm should use pnpm for --use-pnpm flag",
8838+
"create-next-app with package manager pnpm should use pnpm for --use-pnpm flag with example",
8839+
"create-next-app with package manager pnpm should use pnpm when user-agent is pnpm",
8840+
"create-next-app with package manager pnpm should use pnpm when user-agent is pnpm with example"
87458841
],
87468842
"flakey": [],
87478843
"runtimeError": false
87488844
},
87498845
"test/integration/create-next-app/package-manager/yarn.test.ts": {
8750-
"passed": [
8751-
"should use yarn for --use-yarn flag with example",
8752-
"should use yarn when user-agent is yarn",
8753-
"should use yarn when user-agent is yarn with example"
8754-
],
8846+
"passed": [],
87558847
"failed": [],
87568848
"pending": [
8757-
"create-next-app with package manager yarn should use yarn for --use-yarn flag"
8849+
"create-next-app with package manager yarn should use yarn for --use-yarn flag",
8850+
"create-next-app with package manager yarn should use yarn for --use-yarn flag with example",
8851+
"create-next-app with package manager yarn should use yarn when user-agent is yarn",
8852+
"create-next-app with package manager yarn should use yarn when user-agent is yarn with example"
87588853
],
87598854
"flakey": [],
87608855
"runtimeError": false
@@ -8780,7 +8875,8 @@
87808875
"create-next-app --app (App Router) should create TypeScript project with --ts flag",
87818876
"create-next-app --app (App Router) should create an empty TailwindCSS project with --empty flag",
87828877
"create-next-app --app (App Router) should create an empty project with --empty flag",
8783-
"create-next-app --app (App Router) should create project inside \"src\" directory with --src-dir flag"
8878+
"create-next-app --app (App Router) should create project inside \"src\" directory with --src-dir flag",
8879+
"create-next-app --app (App Router) should enable turbopack dev with --turbo flag"
87848880
],
87858881
"flakey": [],
87868882
"runtimeError": false
@@ -8794,7 +8890,8 @@
87948890
"create-next-app --no-app (Pages Router) should create TypeScript project with --ts flag",
87958891
"create-next-app --no-app (Pages Router) should create an empty TailwindCSS project with --empty flag",
87968892
"create-next-app --no-app (Pages Router) should create an empty project with --empty flag",
8797-
"create-next-app --no-app (Pages Router) should create project inside \"src\" directory with --src-dir flag"
8893+
"create-next-app --no-app (Pages Router) should create project inside \"src\" directory with --src-dir flag",
8894+
"create-next-app --no-app (Pages Router) should enable turbopack dev with --turbo flag"
87988895
],
87998896
"flakey": [],
88008897
"runtimeError": false
@@ -15645,6 +15742,15 @@
1564515742
"flakey": [],
1564615743
"runtimeError": false
1564715744
},
15745+
"test/integration/root-catchall-cache/test/index.test.js": {
15746+
"passed": [],
15747+
"failed": [],
15748+
"pending": [
15749+
"Root Catch-all Cache production mode should cache / correctly"
15750+
],
15751+
"flakey": [],
15752+
"runtimeError": false
15753+
},
1564815754
"test/integration/root-optional-revalidate/test/index.test.js": {
1564915755
"passed": [],
1565015756
"failed": [],

0 commit comments

Comments
 (0)