Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Turbopack production test manifest #67793

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 19 additions & 7 deletions test/turbopack-build-tests-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,7 @@
"app-dir static/dynamic handling unstable-cache should work in pages/unstable-cache-edge",
"app-dir static/dynamic handling unstable-cache should work in pages/unstable-cache-node",
"app-dir static/dynamic handling unstable_cache should bypass cache in draft mode",
"app-dir static/dynamic handling unstable_cache should not cache new result in draft mode",
"app-dir static/dynamic handling unstable_cache should not error when calling a fetch no-cache",
"app-dir static/dynamic handling unstable_cache should not error when calling a fetch no-store",
"app-dir static/dynamic handling unstable_cache should not error when retrieving the value undefined",
Expand Down Expand Up @@ -973,6 +974,7 @@
"app-dir static/dynamic handling unstable-cache should work in pages/unstable-cache-edge",
"app-dir static/dynamic handling unstable-cache should work in pages/unstable-cache-node",
"app-dir static/dynamic handling unstable_cache should bypass cache in draft mode",
"app-dir static/dynamic handling unstable_cache should not cache new result in draft mode",
"app-dir static/dynamic handling unstable_cache should not error when calling a fetch no-cache",
"app-dir static/dynamic handling unstable_cache should not error when calling a fetch no-store",
"app-dir static/dynamic handling unstable_cache should not error when retrieving the value undefined",
Expand Down Expand Up @@ -1538,11 +1540,21 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/draft-mode-middleware/draft-mode-middleware.test.ts": {
"passed": [
"app-dir - draft-mode-middleware should be able to disable draft mode with middleware present",
"app-dir - draft-mode-middleware should be able to enable draft mode with middleware present"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/draft-mode/draft-mode.test.ts": {
"passed": [
"app dir - draft mode in edge runtime should be disabled from api route handler",
"app dir - draft mode in edge runtime should be enabled from api route handler when draft mode enabled",
"app dir - draft mode in edge runtime should genenerate rand when draft mode enabled",
"app dir - draft mode in edge runtime should generate rand when draft mode enabled",
"app dir - draft mode in edge runtime should have set-cookie header on enable",
"app dir - draft mode in edge runtime should have set-cookie header with redirect location",
"app dir - draft mode in edge runtime should not perform full page navigation on router.refresh()",
Expand All @@ -1552,7 +1564,7 @@
"app dir - draft mode in edge runtime should use initial rand when draft mode is disabled on /with-edge/with-cookies",
"app dir - draft mode in nodejs runtime should be disabled from api route handler",
"app dir - draft mode in nodejs runtime should be enabled from api route handler when draft mode enabled",
"app dir - draft mode in nodejs runtime should genenerate rand when draft mode enabled",
"app dir - draft mode in nodejs runtime should generate rand when draft mode enabled",
"app dir - draft mode in nodejs runtime should have set-cookie header on enable",
"app dir - draft mode in nodejs runtime should have set-cookie header with redirect location",
"app dir - draft mode in nodejs runtime should not generate rand when draft mode disabled during next start",
Expand Down Expand Up @@ -2140,6 +2152,7 @@
"app dir - metadata basic should support alternate tags",
"app dir - metadata basic should support appLinks tags",
"app dir - metadata basic should support apple related tags `itunes` and `appWebApp`",
"app dir - metadata basic should support facebook related tags",
"app dir - metadata basic should support generateMetadata dynamic props",
"app dir - metadata basic should support other basic tags",
"app dir - metadata basic should support other basic tags (edge)",
Expand Down Expand Up @@ -13745,13 +13758,12 @@
},
"test/integration/page-extensions/test/index.test.js": {
"passed": [
"Page Extensions production mode should throw if pageExtensions has invalid extensions",
"Page Extensions production mode should throw if pageExtensions is an empty array"
],
"failed": [
"Page Extensions production mode should not throw if .d.ts file inside the pages folder",
"Page Extensions production mode should throw if pageExtensions has invalid extensions",
"Page Extensions production mode should throw if pageExtensions is an empty array",
"Page Extensions production mode should use the default pageExtensions if set to undefined"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
Expand Down Expand Up @@ -16057,7 +16069,6 @@
"Production Usage should handle query/hash correctly during query updating #hello? $search",
"Production Usage should handle query/hash correctly during query updating #hello?world $search",
"Production Usage should have defer on all script tags",
"Production Usage should navigate through history after query update",
"Production Usage should navigate to external site and back",
"Production Usage should navigate to external site and back (with query)",
"Production Usage should navigate to page with CSS and back",
Expand All @@ -16077,6 +16088,7 @@
"failed": [
"Production Usage process.browser should eliminate client only code on the server",
"Production Usage process.browser should eliminate server only code on the client",
"Production Usage should navigate through history after query update",
"Production Usage should output traces"
],
"pending": [
Expand Down
Loading