You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error overlay - RSC runtime errors > should show runtime errors if invalid client API from node_modules is executed
Error overlay - RSC runtime errors > should show runtime errors if invalid server API from node_modules is executed
Expand output
● Error overlay - RSC runtime errors › should show runtime errors if invalid client API from node_modules is executed
thrown: "Exceeded timeout of 120000 ms for a hook.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout."
240 | let next: NextInstance
241 | if (!skipped) {
> 242 | beforeAll(async () => {
| ^
243 | next = await createNext(options)
244 | })
245 | afterAll(async () => {
at beforeAll (lib/e2e-utils.ts:242:5)
at nextTestSetup (lib/e2e-utils.ts:302:21)
at describe (lib/e2e-utils.ts:301:3)
at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:11:19)
● Error overlay - RSC runtime errors › should show runtime errors if invalid server API from node_modules is executed
thrown: "Exceeded timeout of 120000 ms for a hook.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout."
240 | let next: NextInstance
241 | if (!skipped) {
> 242 | beforeAll(async () => {
| ^
243 | next = await createNext(options)
244 | })
245 | afterAll(async () => {
at beforeAll (lib/e2e-utils.ts:242:5)
at nextTestSetup (lib/e2e-utils.ts:302:21)
at describe (lib/e2e-utils.ts:301:3)
at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:11:19)
● Test suite failed to run
thrown: "Exceeded timeout of 120000 ms for a hook.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout."
115 |
116 | if (typeof afterAll === 'function') {
> 117 | afterAll(async () => {
| ^
118 | if (nextInstance) {
119 | await nextInstance.destroy()
120 | throw new Error(
at Object.afterAll (lib/e2e-utils.ts:117:3)
at Object.<anonymous> (development/acceptance-app/rsc-runtime-errors.test.ts:7:19)
Read more about building and testing Next.js in contributing.md.
ForsakenHarmony
changed the title
feat(turbopack): add support for parallel routes
feat(turbopack): add support for parallel routes and route interception
Oct 25, 2023
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What?
We have to walk the directory tree recursively for every page (instead of once) to get the correct loaderTree.
With this PR we walk the directory tree and for every
page.(js,jsx,ts,tsx)
(entrypoint) we find we walk it again to get the loader tree for that pageCloses WEB-1868
Closes WEB-1609