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 development test manifest #74268

Open
wants to merge 1 commit into
base: canary
Choose a base branch
from
Open
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
62 changes: 56 additions & 6 deletions test/turbopack-dev-tests-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,17 @@
"flakey": [],
"runtimeError": false
},
"packages/next/src/client/components/react-dev-overlay/_experimental/internal/helpers/webpack-module-path.test.ts": {
"passed": [
"webpack-module-path formatFrameSourceFile should return the original file path",
"webpack-module-path isWebpackInternalResource should return false for non-webpack-internal paths",
"webpack-module-path isWebpackInternalResource should return true for webpack-internal paths"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"packages/next/src/client/components/react-dev-overlay/internal/helpers/webpack-module-path.test.ts": {
"passed": [
"webpack-module-path formatFrameSourceFile should return the original file path",
Expand All @@ -511,6 +522,18 @@
"flakey": [],
"runtimeError": false
},
"packages/next/src/client/components/react-dev-overlay/server/get-next-error-feedback-middleware.test.ts": {
"passed": [
"getNextErrorFeedbackMiddleware calls next() if path does not match",
"getNextErrorFeedbackMiddleware records telemetry when feedback is submitted",
"getNextErrorFeedbackMiddleware returns 400 if params are missing",
"getNextErrorFeedbackMiddleware returns 500 if telemetry recording fails"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"packages/next/src/client/components/redirect.test.ts": {
"passed": ["test should throw a redirect error"],
"failed": [],
Expand Down Expand Up @@ -3574,7 +3597,9 @@
"test/e2e/app-dir/actions/app-action-progressive-enhancement.test.ts": {
"passed": [
"app-dir action progressive enhancement should support actions from client without JS",
"app-dir action progressive enhancement should support formData and redirect without JS"
"app-dir action progressive enhancement should support formData and redirect without JS",
"app-dir action progressive enhancement should support headers and cookies without JS (runtime: edge)",
"app-dir action progressive enhancement should support headers and cookies without JS (runtime: node)"
],
"failed": [],
"pending": [],
Expand Down Expand Up @@ -3816,6 +3841,7 @@
"app dir - css css support server layouts should support external css imports",
"app dir - css css support server pages should not contain pages css in app dir page",
"app dir - css css support server pages should support css modules inside server pages",
"app dir - css css support server pages should support css modules shared between server pages",
"app dir - css css support server pages should support global css inside server pages",
"app dir - css css support should not affect css orders during HMR",
"app dir - css css support should reload @import styles during HMR",
Expand Down Expand Up @@ -6588,6 +6614,23 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/non-root-project-monorepo/non-root-project-monorepo.test.ts": {
"passed": [
"non-root-project-monorepo import.meta.url should work during RSC",
"non-root-project-monorepo import.meta.url should work during SSR",
"non-root-project-monorepo import.meta.url should work on client-side",
"non-root-project-monorepo monorepo-package should work during RSC",
"non-root-project-monorepo monorepo-package should work during SSR",
"non-root-project-monorepo monorepo-package should work on client-side",
"non-root-project-monorepo source-maps should work on RSC",
"non-root-project-monorepo source-maps should work on SSR",
"non-root-project-monorepo source-maps should work on client-side"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/not-found-default/index.test.ts": {
"passed": [
"app dir - not found with default 404 page should be able to navigate to page calling not-found",
Expand Down Expand Up @@ -7070,6 +7113,17 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/ppr-missing-root-params/ppr-missing-root-params.test.ts": {
"passed": [
"ppr-missing-root-params (multiple) should result in a build error",
"ppr-missing-root-params (nested) should result in a build error",
"ppr-missing-root-params (single) should result in a build error"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/ppr-navigations/avoid-popstate-flash/avoid-popstate-flash.test.ts": {
"passed": ["avoid-popstate-flash should skip dev & deploy"],
"failed": [],
Expand Down Expand Up @@ -8051,11 +8105,7 @@
"runtimeError": false
},
"test/e2e/app-dir/static-shell-debugging/static-shell-debugging.test.ts": {
"passed": [
"static-shell-debugging ppr = false, debugging = false should render the full page",
"static-shell-debugging ppr = true, debugging = true should only render the static shell",
"static-shell-debugging ppr = true, debugging = true should skip hydration to avoid blanking out the page"
],
"passed": ["static-shell-debugging should render the full page"],
"failed": [],
"pending": [],
"flakey": [],
Expand Down
Loading