Skip to content
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
26 changes: 21 additions & 5 deletions test/rspack-dev-tests-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2103,6 +2103,7 @@
"middleware - development errors when there is a compilation error after boot logs the error correctly",
"middleware - development errors when there is a compilation error after boot renders the error correctly and recovers",
"middleware - development errors when there is a compilation error from boot logs the error correctly",
"middleware - development errors when there is a compilation error from boot renders the error correctly and recovers",
"middleware - development errors when there is an unhandled rejection while loading a dependency does not render the error",
"middleware - development errors when there is an unhandled rejection while loading a dependency logs the error correctly",
"middleware - development errors when there is an unhandled rejection while loading the module does not render the error",
Expand All @@ -2111,7 +2112,6 @@
],
"failed": [
"middleware - development errors when running invalid dynamic code with eval logs the error correctly",
"middleware - development errors when there is a compilation error from boot renders the error correctly and recovers",
"middleware - development errors when throwing while loading the module logs the error correctly"
],
"pending": [],
Expand Down Expand Up @@ -2705,11 +2705,10 @@
},
"test/e2e/app-dir/actions-navigation/index.test.ts": {
"passed": [
"app-dir action handling should handle actions correctly after following a relative link"
],
"failed": [
"app-dir action handling should handle actions correctly after following a relative link",
"app-dir action handling should handle actions correctly after navigation / redirection events"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
Expand Down Expand Up @@ -2737,7 +2736,7 @@
"unrecognized server actions should 404 when POSTing a non-server-action request to a nonexistent page",
"unrecognized server actions should 404 when POSTing a server action with an unrecognized id to a nonexistent page: form-data/multipart",
"unrecognized server actions should 404 when POSTing a server action with an unrecognized id to a nonexistent page: plaintext",
"unrecognized server actions should 404 when POSTing a server action with an unrecognized id to a nonexistent page: urlencoded",
"unrecognized server actions should 404 when POSTing a urlencoded action to a nonexistent page",
"unrecognized server actions should error and log a warning when submitting a server action with an unrecognized ID - edge server action invoked from JS - with complex argument",
"unrecognized server actions should error and log a warning when submitting a server action with an unrecognized ID - edge server action invoked from JS - with simple argument",
"unrecognized server actions should error and log a warning when submitting a server action with an unrecognized ID - edge server action invoked via form - js disabled",
Expand Down Expand Up @@ -7286,6 +7285,16 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/no-server-actions/no-server-actions.test.ts": {
"passed": [
"app-dir - no server actions should 404 when triggering a fetch action on an app with no server actions",
"app-dir - no server actions should 404 when triggering an MPA action on an app with no server actions"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/node-extensions/node-extensions.random.test.ts": {
"passed": [
"Node Extensions Random Cache Components should not error when accessing middlware that use Math.random()",
Expand Down Expand Up @@ -11670,6 +11679,13 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/next-analyze/next-analyze.test.ts": {
"passed": ["next experimental-analyze skips in non-Turbopack tests"],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/next-config-warnings/esm-externals-false/esm-externals-false.test.ts": {
"passed": [
"next-config-warnings - esm-externals-false should warn when using ESM externals: false"
Expand Down
Loading