Skip to content

test: replace deprecated check() with retry() in test suites #80672

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

Draft
wants to merge 1 commit into
base: canary
Choose a base branch
from

Conversation

wyattjoh
Copy link
Member

No description provided.

@ijjk ijjk added created-by: Next.js team PRs by the Next.js team. tests labels Jun 19, 2025
Copy link
Member Author

This stack of pull requests is managed by Graphite. Learn more about stacking.

@ijjk
Copy link
Member

ijjk commented Jun 19, 2025

Failing test suites

Commit: ac0a322

pnpm test-dev-turbo test/development/acceptance-app/editor-links.test.ts (turbopack)

  • Error overlay - editor links > should be possible to open source file on build error
Expand output

● Error overlay - editor links › should be possible to open source file on build error

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  number
Received has value: 1

  83 |     await clickSourceFile(browser)
  84 |     await retry(async () => {
> 85 |       expect(editorRequestsCount).toMatch(/1/)
     |                                   ^
  86 |     })
  87 |   })
  88 |   ;(process.env.IS_TURBOPACK_TEST ? describe.skip : describe)(

  at toMatch (development/acceptance-app/editor-links.test.ts:85:35)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (development/acceptance-app/editor-links.test.ts:84:5)

Read more about building and testing Next.js in contributing.md.

pnpm test-start test/e2e/app-dir/app-basepath/index.test.ts

  • app dir - basepath > should properly stream an internal server action redirect() with a relative URL
  • app dir - basepath > should properly stream an internal server action redirect() with a absolute URL
  • app dir - basepath > should redirect externally when encountering absolute URLs on the same host outside the basePath
Expand output

● app dir - basepath › should properly stream an internal server action redirect() with a relative URL

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 66506, Symbol(trigger_async_id_symbol): 66488, Symbol(kResourceStore): undefined}

  135 |       await browser.elementById(buttonId).click()
  136 |       await retry(async () => {
> 137 |         expect(browser.url()).toMatch(/\/base\/another/)
      |                               ^
  138 |       })
  139 |
  140 |       expect(await browser.waitForElementByCss('#page-2').text()).toBe(`Page 2`)

  at toMatch (e2e/app-dir/app-basepath/index.test.ts:137:31)
  at fn (lib/next-test-utils.ts:811:20)
  at e2e/app-dir/app-basepath/index.test.ts:136:7

● app dir - basepath › should properly stream an internal server action redirect() with a absolute URL

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 72446, Symbol(trigger_async_id_symbol): 72429, Symbol(kResourceStore): undefined}

  135 |       await browser.elementById(buttonId).click()
  136 |       await retry(async () => {
> 137 |         expect(browser.url()).toMatch(/\/base\/another/)
      |                               ^
  138 |       })
  139 |
  140 |       expect(await browser.waitForElementByCss('#page-2').text()).toBe(`Page 2`)

  at toMatch (e2e/app-dir/app-basepath/index.test.ts:137:31)
  at fn (lib/next-test-utils.ts:811:20)
  at e2e/app-dir/app-basepath/index.test.ts:136:7

● app dir - basepath › should redirect externally when encountering absolute URLs on the same host outside the basePath

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 78846, Symbol(trigger_async_id_symbol): 78829, Symbol(kResourceStore): undefined}

  184 |     await browser.elementById('redirect-absolute-external').click()
  185 |     await retry(async () => {
> 186 |       expect(browser.url()).toMatch(/\/outsideBasePath/)
      |                             ^
  187 |     })
  188 |
  189 |     // We expect to see two requests, first a POST invoking the server

  at toMatch (e2e/app-dir/app-basepath/index.test.ts:186:29)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/app-basepath/index.test.ts:185:5)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/error-load-fail/test/index.test.js (turbopack)

  • Failing to load _error > production mode > handles failing to load _error correctly
Expand output

● Failing to load _error › production mode › handles failing to load _error correctly

expect(received).toBe(expected) // Object.is equality

Expected: false
Received: undefined

  33 |         await retry(async () => {
  34 |           const beforeNavigate = await browser.eval('window.beforeNavigate')
> 35 |           expect(beforeNavigate).toBe(false)
     |                                  ^
  36 |         })
  37 |       })
  38 |     }

  at toBe (integration/error-load-fail/test/index.test.js:35:34)
  at retry (lib/next-test-utils.ts:811:14)
  at Object.<anonymous> (integration/error-load-fail/test/index.test.js:33:9)

Read more about building and testing Next.js in contributing.md.

pnpm test-start-turbo test/e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts (turbopack)

  • interception-middleware-rewrite > should support intercepting routes with a middleware rewrite
  • interception-middleware-rewrite > should continue to work after using browser back button and following another intercepting route
Expand output

● interception-middleware-rewrite › should support intercepting routes with a middleware rewrite

expect(received).toBe(expected) // Object.is equality

Expected: "intercepted"
Received: {"activeTrace": "http%3A%2F%2Flocalhost%3A41623%2F", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  27 |           .waitForElementByCss('#modal')
  28 |           .text()
> 29 |       ).toBe('intercepted')
     |         ^
  30 |     })
  31 |
  32 |     await retry(async () => {

  at toBe (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:29:9)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:22:5)

● interception-middleware-rewrite › should continue to work after using browser back button and following another intercepting route

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('[href="/feed"]')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:25:12)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:22:5)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:425:17)
  at click (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:26:12)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:22:5)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:549:17)
  at Proxy.startChain (lib/browsers/playwright.ts:455:17)
  at waitForElementByCss (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:27:12)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:22:5)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:387:17)
  at text (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:28:12)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/interception-middleware-rewrite/interception-middleware-rewrite.test.ts:22:5)

Read more about building and testing Next.js in contributing.md.

pnpm test-start-turbo test/e2e/app-dir/app-prefetch-false-loading/app-prefetch-false-loading.test.ts (turbopack)

  • app-prefetch-false-loading > should not re-trigger loading state when navigating between pages that share a dynamic layout
Expand output

● app-prefetch-false-loading › should not re-trigger loading state when navigating between pages that share a dynamic layout

expect(received).toBe(expected) // Object.is equality

Expected: true
Received: {"activeTrace": "http%3A%2F%2Flocalhost%3A44995%2Fen%2Ftesting", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  21 |
  22 |     await retry(async () => {
> 23 |       expect(browser.hasElementByCssSelector('#nested-testing-page')).toBe(true)
     |                                                                       ^
  24 |     })
  25 |
  26 |     const newRandomNumber = await browser.elementById('random-number').text()

  at toBe (e2e/app-dir/app-prefetch-false-loading/app-prefetch-false-loading.test.ts:23:71)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/app-prefetch-false-loading/app-prefetch-false-loading.test.ts:22:5)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/read-only-source-hmr/test/index.test.js (turbopack)

  • Read-only source HMR > should detect changes to a page
  • Read-only source HMR > should handle page deletion and subsequent recreation
  • Read-only source HMR > should detect a new page
Expand output

● Read-only source HMR › should detect changes to a page

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": "http%3A%2F%2Flocalhost%3A33135%2Fhello", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  62 |       browser = await webdriver(appPort, '/hello')
  63 |       await retry(async () => {
> 64 |         expect(getBrowserBodyText(browser)).toMatch(/Hello World/)
     |                                             ^
  65 |       })
  66 |
  67 |       const originalContent = await fs.readFile(pagePath, 'utf8')

  at toMatch (integration/read-only-source-hmr/test/index.test.js:64:45)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/read-only-source-hmr/test/index.test.js:63:7)

● Read-only source HMR › should handle page deletion and subsequent recreation

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": "http%3A%2F%2Flocalhost%3A33135%2Fhello", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

   95 |       browser = await webdriver(appPort, '/hello')
   96 |       await retry(async () => {
>  97 |         expect(getBrowserBodyText(browser)).toMatch(/Hello World/)
      |                                             ^
   98 |       })
   99 |
  100 |       const originalContent = await fs.readFile(pagePath, 'utf8')

  at toMatch (integration/read-only-source-hmr/test/index.test.js:97:45)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/read-only-source-hmr/test/index.test.js:96:7)

● Read-only source HMR › should detect a new page

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": "http%3A%2F%2Flocalhost%3A33135%2Fnew", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  133 |       browser = await webdriver(appPort, '/new')
  134 |       await retry(async () => {
> 135 |         expect(getBrowserBodyText(browser)).toMatch(/New page/)
      |                                             ^
  136 |       })
  137 |     } finally {
  138 |       if (browser) {

  at toMatch (integration/read-only-source-hmr/test/index.test.js:135:45)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/read-only-source-hmr/test/index.test.js:134:7)

Read more about building and testing Next.js in contributing.md.

pnpm test-start test/e2e/app-dir/app-static/app-static.test.ts

  • app-dir static/dynamic handling > should revalidate correctly with config and fetch revalidate
Expand output

● app-dir static/dynamic handling › should revalidate correctly with config and fetch revalidate

expect(received).not.toBe(expected) // Object.is equality

Expected: not "1750451152026"

  743 |         const curRandomData = $('#random-data').text()
  744 |
> 745 |         expect(curDate).not.toBe(prevInitialDate)
      |                             ^
  746 |         expect(curRandomData).not.toBe(prevInitialRandomData)
  747 |
  748 |         prevInitialDate = curDate

  at toBe (e2e/app-dir/app-static/app-static.test.ts:745:29)
  at retry (lib/next-test-utils.ts:811:14)
  at Object.<anonymous> (e2e/app-dir/app-static/app-static.test.ts:740:7)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/typescript-hmr/test/index.test.js (turbopack)

  • TypeScript HMR > delete a page and add it back > should detect the changes to typescript pages and display it
Expand output

● TypeScript HMR › delete a page and add it back › should detect the changes to typescript pages and display it

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": "http%3A%2F%2Flocalhost%3A37891%2Fhello", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  38 |         browser = await webdriver(appPort, '/hello')
  39 |         await retry(async () => {
> 40 |           expect(getBrowserBodyText(browser)).toMatch(/Hello World/)
     |                                               ^
  41 |         })
  42 |
  43 |         const pagePath = join(appDir, 'pages/hello.tsx')

  at toMatch (integration/typescript-hmr/test/index.test.js:40:47)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/typescript-hmr/test/index.test.js:39:9)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/url/test/index.test.js (turbopack)

  • Handle new URL asset references in next dev > should client-render the /static page
  • Handle new URL asset references in next dev > should client-render the /ssr page
  • Handle new URL asset references in next dev > should client-render the /ssg page
Expand output

● Handle new URL asset references in next dev › should client-render the /static page

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": "http%3A%2F%2Flocalhost%3A35939%2Fstatic", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  56 |             browser = await webdriver(appPort, page)
  57 |             await retry(async () => {
> 58 |               expect(getBrowserBodyText(browser)).toMatch(expectedClient)
     |                                                   ^
  59 |             })
  60 |           } finally {
  61 |             await browser.close()

  at toMatch (integration/url/test/index.test.js:58:51)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/url/test/index.test.js:57:13)

● Handle new URL asset references in next dev › should client-render the /ssr page

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": "http%3A%2F%2Flocalhost%3A35939%2Fssr", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  56 |             browser = await webdriver(appPort, page)
  57 |             await retry(async () => {
> 58 |               expect(getBrowserBodyText(browser)).toMatch(expectedClient)
     |                                                   ^
  59 |             })
  60 |           } finally {
  61 |             await browser.close()

  at toMatch (integration/url/test/index.test.js:58:51)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/url/test/index.test.js:57:13)

● Handle new URL asset references in next dev › should client-render the /ssg page

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": "http%3A%2F%2Flocalhost%3A35939%2Fssg", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  56 |             browser = await webdriver(appPort, page)
  57 |             await retry(async () => {
> 58 |               expect(getBrowserBodyText(browser)).toMatch(expectedClient)
     |                                                   ^
  59 |             })
  60 |           } finally {
  61 |             await browser.close()

  at toMatch (integration/url/test/index.test.js:58:51)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/url/test/index.test.js:57:13)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/next-image-new/app-dir/test/index.test.ts (turbopack)

  • Image Component Default Tests > production mode > should apply filter style after image loads
  • Image Component Default Tests > production mode > should emit image for next/dynamic with non ssr case
Expand output

● Image Component Default Tests › production mode › should apply filter style after image loads

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 287712, Symbol(trigger_async_id_symbol): 286512, Symbol(kResourceStore): undefined}

  1338 |     const browser = await webdriver(appPort, '/style-filter')
  1339 |     await retry(async () => {
> 1340 |       expect(getSrc(browser, 'img-plain')).toMatch(/^\/_next\/image/)
       |                                            ^
  1341 |     })
  1342 |     await retry(async () => {
  1343 |       expect(getSrc(browser, 'img-blur')).toMatch(/^\/_next\/image/)

  at toMatch (integration/next-image-new/app-dir/test/index.test.ts:1340:44)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-new/app-dir/test/index.test.ts:1339:5)

● Image Component Default Tests › production mode › should emit image for next/dynamic with non ssr case

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('#img-plain')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at Playwright.elementByCss [as elementById] (lib/browsers/playwright.ts:379:17)
  at elementById (integration/next-image-new/app-dir/test/index.test.ts:64:29)
  at getSrc (integration/next-image-new/app-dir/test/index.test.ts:1340:14)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-new/app-dir/test/index.test.ts:1339:5)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:409:17)
  at getAttribute (integration/next-image-new/app-dir/test/index.test.ts:64:45)
  at getSrc (integration/next-image-new/app-dir/test/index.test.ts:1340:14)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-new/app-dir/test/index.test.ts:1339:5)

Read more about building and testing Next.js in contributing.md.

pnpm test-start test/e2e/app-dir/app-prefetch/prefetching.test.ts

  • app dir - prefetching > should calculate _rsc query based on Next-Url
  • app dir - prefetching > dynamic rendering > /force-dynamic > should not re-render layout when navigating between sub-pages
  • app dir - prefetching > dynamic rendering > /revalidate-0 > should not re-render layout when navigating between sub-pages
  • app dir - prefetching > invalid URLs > should not throw when an invalid URL is passed to Link
  • app dir - prefetching > invalid URLs > should throw when an invalid URL is passed to router.prefetch
Expand output

● app dir - prefetching › should calculate _rsc query based on Next-Url

expect(received).toBe(expected) // Object.is equality

Expected: 2
Received: 1

  188 |     )
  189 |     await retry(async () => {
> 190 |       expect(staticPageRequests.length).toBe(2)
      |                                         ^
  191 |     })
  192 |
  193 |     expect(staticPageRequests[0]).toMatch('/static-page?_rsc=')

  at toBe (e2e/app-dir/app-prefetch/prefetching.test.ts:190:41)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/app-prefetch/prefetching.test.ts:189:5)

● app dir - prefetching › dynamic rendering › /force-dynamic › should not re-render layout when navigating between sub-pages

expect(received).toBe(expected) // Object.is equality

Expected: true
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  502 |
  503 |           await retry(async () => {
> 504 |             expect(browser.hasElementByCssSelector('#sub-page')).toBe(true)
      |                                                                  ^
  505 |           })
  506 |
  507 |           const newRandomNumber = await browser

  at toBe (e2e/app-dir/app-prefetch/prefetching.test.ts:504:66)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/app-prefetch/prefetching.test.ts:503:11)

● app dir - prefetching › dynamic rendering › /revalidate-0 › should not re-render layout when navigating between sub-pages

expect(received).toBe(expected) // Object.is equality

Expected: true
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  502 |
  503 |           await retry(async () => {
> 504 |             expect(browser.hasElementByCssSelector('#sub-page')).toBe(true)
      |                                                                  ^
  505 |           })
  506 |
  507 |           const newRandomNumber = await browser

  at toBe (e2e/app-dir/app-prefetch/prefetching.test.ts:504:66)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/app-prefetch/prefetching.test.ts:503:11)

● app dir - prefetching › invalid URLs › should not throw when an invalid URL is passed to Link

expect(received).toBe(expected) // Object.is equality

Expected: true
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  556 |
  557 |       await retry(async () => {
> 558 |         expect(browser.hasElementByCssSelector('h1')).toBe(true)
      |                                                       ^
  559 |       })
  560 |       expect(await browser.elementByCss('h1').text()).toEqual('Hello, world!')
  561 |     })

  at toBe (e2e/app-dir/app-prefetch/prefetching.test.ts:558:55)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/app-prefetch/prefetching.test.ts:557:7)

● app dir - prefetching › invalid URLs › should throw when an invalid URL is passed to router.prefetch

expect(received).toBe(expected) // Object.is equality

Expected: true
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  565 |
  566 |       await retry(async () => {
> 567 |         expect(browser.hasElementByCssSelector('h1')).toBe(true)
      |                                                       ^
  568 |       })
  569 |       expect(await browser.elementByCss('h1').text()).toEqual(
  570 |         'A prefetch threw an error'

  at toBe (e2e/app-dir/app-prefetch/prefetching.test.ts:567:55)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/app-prefetch/prefetching.test.ts:566:7)

Read more about building and testing Next.js in contributing.md.

pnpm test-start test/production/pages-dir/production/test/index.test.ts

  • Production Usage > Dynamic import > custom loading > should render the component on client side
  • Production Usage > Dynamic import > default behavior > should not remove css styles for same css file between page transitions
  • Production Usage > Dynamic import > default behavior > should output correct css even in case of three css module files while one is shared across files
  • Production Usage > Dynamic import > default behavior > should render even there are no physical chunk exists
  • Production Usage > Dynamic import > ssr:false option > should render the component on client side
  • Production Usage > Dynamic import > ssr:true option > should render the component on client side
Expand output

● Production Usage › Dynamic import › default behavior › should not remove css styles for same css file between page transitions

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('body')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (production/pages-dir/production/test/dynamic.ts:49:28)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:48:11)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:387:17)
  at text (production/pages-dir/production/test/dynamic.ts:49:49)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:48:11)

● Production Usage › Dynamic import › default behavior › should not remove css styles for same css file between page transitions

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  47 |           browser = await webdriver(next.appPort, '/dynamic/pagechange1')
  48 |           await retry(() => {
> 49 |             expect(browser.elementByCss('body').text()).toMatch(/PageChange1/)
     |                                                         ^
  50 |           })
  51 |           const firstElement = await browser.elementById('with-css')
  52 |           const css1 = await firstElement.getComputedCss('display')

  at toMatch (production/pages-dir/production/test/dynamic.ts:49:57)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:48:11)

● Production Usage › Dynamic import › default behavior › should output correct css even in case of three css module files while one is shared across files

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('#with-css')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (production/pages-dir/production/test/dynamic.ts:77:23)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:75:11)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:405:17)
  at getComputedCss (production/pages-dir/production/test/dynamic.ts:77:49)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:75:11)

● Production Usage › Dynamic import › default behavior › should output correct css even in case of three css module files while one is shared across files

expect(received).toBe(expected) // Object.is equality

Expected: "rgb(0, 0, 0)"
Received: {Symbol(async_id_symbol): 389969, Symbol(trigger_async_id_symbol): 388749, Symbol(kResourceStore): undefined}

  76 |             expect(
  77 |               browser.elementByCss('#with-css').getComputedCss('color')
> 78 |             ).toBe('rgb(0, 0, 0)')
     |               ^
  79 |           })
  80 |           await retry(() => {
  81 |             expect(

  at toBe (production/pages-dir/production/test/dynamic.ts:78:15)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:75:11)

● Production Usage › Dynamic import › default behavior › should render even there are no physical chunk exists

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('body')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (production/pages-dir/production/test/dynamic.ts:103:28)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:102:11)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:387:17)
  at text (production/pages-dir/production/test/dynamic.ts:103:49)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:102:11)

● Production Usage › Dynamic import › default behavior › should render even there are no physical chunk exists

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  101 |           browser = await webdriver(next.appPort, '/dynamic/no-chunk')
  102 |           await retry(() => {
> 103 |             expect(browser.elementByCss('body').text()).toMatch(
      |                                                         ^
  104 |               /Welcome, normal/
  105 |             )
  106 |           })

  at toMatch (production/pages-dir/production/test/dynamic.ts:103:57)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:102:11)

● Production Usage › Dynamic import › ssr:false option › should render the component on client side

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('body')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (production/pages-dir/production/test/dynamic.ts:130:28)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:129:11)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:387:17)
  at text (production/pages-dir/production/test/dynamic.ts:130:49)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:129:11)

● Production Usage › Dynamic import › ssr:false option › should render the component on client side

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  128 |           browser = await webdriver(next.appPort, '/dynamic/no-ssr')
  129 |           await retry(() => {
> 130 |             expect(browser.elementByCss('body').text()).toMatch(/Hello World 1/)
      |                                                         ^
  131 |           })
  132 |         } finally {
  133 |           if (browser) {

  at toMatch (production/pages-dir/production/test/dynamic.ts:130:57)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:129:11)

● Production Usage › Dynamic import › ssr:true option › should render the component on client side

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('body')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (production/pages-dir/production/test/dynamic.ts:151:28)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:150:11)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:387:17)
  at text (production/pages-dir/production/test/dynamic.ts:151:49)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:150:11)

● Production Usage › Dynamic import › ssr:true option › should render the component on client side

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  149 |           browser = await webdriver(next.appPort, '/dynamic/ssr-true')
  150 |           await retry(() => {
> 151 |             expect(browser.elementByCss('body').text()).toMatch(/Hello World 1/)
      |                                                         ^
  152 |           })
  153 |         } finally {
  154 |           if (browser) {

  at toMatch (production/pages-dir/production/test/dynamic.ts:151:57)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:150:11)

● Production Usage › Dynamic import › custom loading › should render the component on client side

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('body')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (production/pages-dir/production/test/dynamic.ts:175:28)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:174:11)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:387:17)
  at text (production/pages-dir/production/test/dynamic.ts:175:49)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:174:11)

● Production Usage › Dynamic import › custom loading › should render the component on client side

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  173 |           )
  174 |           await retry(() => {
> 175 |             expect(browser.elementByCss('body').text()).toMatch(/Hello World 1/)
      |                                                         ^
  176 |           })
  177 |         } finally {
  178 |           if (browser) {

  at toMatch (production/pages-dir/production/test/dynamic.ts:175:57)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (production/pages-dir/production/test/dynamic.ts:174:11)

Read more about building and testing Next.js in contributing.md.

__NEXT_EXPERIMENTAL_PPR=true pnpm test-start test/e2e/app-dir/parallel-routes-catchall-children-slot/parallel-routes-catchall-children-slot.test.ts (PPR)

  • parallel-routes-catchall-children-slot > should match the @children slot for a page before attempting to match the catchall
Expand output

● parallel-routes-catchall-children-slot › should match the @children slot for a page before attempting to match the catchall

expect(received).resolves.toBe()

Matcher error: received value must be a promise

Received has type:  string
Received has value: "Hello from @children/page"

   8 |   it('should match the @children slot for a page before attempting to match the catchall', async () => {
   9 |     let browser = await next.browser('/')
> 10 |     await expect(await browser.elementById('children').text()).resolves.toBe(
     |                                                                         ^
  11 |       'Hello from @children/page'
  12 |     )
  13 |     await expect(await browser.elementById('slot').text()).resolves.toBe(

  at Object.toBe (../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.js:162:13)
  at Object.toBe (e2e/app-dir/parallel-routes-catchall-children-slot/parallel-routes-catchall-children-slot.test.ts:10:73)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/next-image-legacy/no-intersection-observer-fallback/test/index.test.ts

  • Image Component No IntersectionObserver test > production mode > Client-side Lazy Loading Tests > should automatically load images if observer does not exist
  • Image Component No IntersectionObserver test > production mode > SSR Lazy Loading Tests > should automatically load images if observer does not exist
Expand output

● Image Component No IntersectionObserver test › production mode › SSR Lazy Loading Tests › should automatically load images if observer does not exist

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has value: null

  32 |           // Make sure the IntersectionObserver is mocked to null during the test
  33 |           await retry(async () => {
> 34 |             expect(await browser.eval('IntersectionObserver')).toMatch(/null/)
     |                                                                ^
  35 |           })
  36 |
  37 |           expect(

  at toMatch (integration/next-image-legacy/no-intersection-observer-fallback/test/index.test.ts:34:64)
  at retry (lib/next-test-utils.ts:811:14)
  at Object.<anonymous> (integration/next-image-legacy/no-intersection-observer-fallback/test/index.test.ts:33:11)

● Image Component No IntersectionObserver test › production mode › Client-side Lazy Loading Tests › should automatically load images if observer does not exist

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has value: null

  54 |           // Make sure the IntersectionObserver is mocked to null during the test
  55 |           await retry(async () => {
> 56 |             expect(await browser.eval('IntersectionObserver')).toMatch(/null/)
     |                                                                ^
  57 |           })
  58 |
  59 |           await browser.waitForElementByCss('#link-no-observer').click()

  at toMatch (integration/next-image-legacy/no-intersection-observer-fallback/test/index.test.ts:56:64)
  at retry (lib/next-test-utils.ts:811:14)
  at Object.<anonymous> (integration/next-image-legacy/no-intersection-observer-fallback/test/index.test.ts:55:11)

Read more about building and testing Next.js in contributing.md.

pnpm test-start-turbo test/e2e/app-dir/shallow-routing/shallow-routing.test.ts (turbopack)

  • shallow-routing > back and forward > mpa navigation > should support setting data and then still support navigating back and forward
  • shallow-routing > back and forward > mpa navigation > should support hash navigations while continuing to work for pushState/replaceState APIs
Expand output

● shallow-routing › back and forward › mpa navigation › should support setting data and then still support navigating back and forward

expect(received).toBe(expected) // Object.is equality

Expected: "Page A"
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  481 |               .waitForElementByCss('#page-a')
  482 |               .text()
> 483 |           ).toBe('Page A')
      |             ^
  484 |         })
  485 |       })
  486 |

  at toBe (e2e/app-dir/shallow-routing/shallow-routing.test.ts:483:13)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/shallow-routing/shallow-routing.test.ts:476:9)

● shallow-routing › back and forward › mpa navigation › should support hash navigations while continuing to work for pushState/replaceState APIs

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('#to-a-mpa')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at elementByCss (e2e/app-dir/shallow-routing/shallow-routing.test.ts:479:16)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/shallow-routing/shallow-routing.test.ts:476:9)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:425:17)
  at click (e2e/app-dir/shallow-routing/shallow-routing.test.ts:480:16)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/shallow-routing/shallow-routing.test.ts:476:9)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:549:17)
  at Proxy.startChain (lib/browsers/playwright.ts:455:17)
  at waitForElementByCss (e2e/app-dir/shallow-routing/shallow-routing.test.ts:481:16)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/shallow-routing/shallow-routing.test.ts:476:9)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:387:17)
  at text (e2e/app-dir/shallow-routing/shallow-routing.test.ts:482:16)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/shallow-routing/shallow-routing.test.ts:476:9)

Read more about building and testing Next.js in contributing.md.

pnpm test-start-turbo test/e2e/app-dir/rsc-basic/rsc-basic.test.ts (turbopack)

  • app dir - rsc basics > should be able to navigate between rsc routes
Expand output

● app dir - rsc basics › should be able to navigate between rsc routes

expect(received).toBe(expected) // Object.is equality

Expected: "http://localhost:43295/next-api/link"
Received: {Symbol(async_id_symbol): 67105, Symbol(trigger_async_id_symbol): 67082, Symbol(kResourceStore): undefined}

  197 |     await new Promise((res) => setTimeout(res, 1000))
  198 |     await retry(async () => {
> 199 |       expect(browser.url()).toBe(`${next.url}/next-api/link`)
      |                             ^
  200 |     })
  201 |     await browser.waitForElementByCss('#goto-home').click()
  202 |     await new Promise((res) => setTimeout(res, 1000))

  at toBe (e2e/app-dir/rsc-basic/rsc-basic.test.ts:199:29)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/rsc-basic/rsc-basic.test.ts:198:5)

Read more about building and testing Next.js in contributing.md.

pnpm test-dev-turbo test/development/app-hmr/hmr.test.ts (turbopack)

  • app-dir-hmr > filesystem changes > should update server components pages when env files is changed (edge-module-var)
Expand output

● app-dir-hmr › filesystem changes › should update server components pages when env files is changed (edge-module-var)

expect(received).toEqual(expected) // deep equality

Expected: ArrayContaining [ObjectContaining {"message": StringContaining "[Fast Refresh] done", "source": "log"}]
Received: [{"message": "%cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools font-weight:bold", "source": "info"}, {"message": "Next.js page already hydrated", "source": "log"}, {"message": "connected to ws at ws://localhost:41261/_next/webpack-hmr", "source": "log"}, {"message": "received ws message {\"action\":\"isrManifest\",\"data\":{\"/does-not-exist\":true,\"/folder-renamed\":true,\"/env/node\":true,\"/env/node-module-var\":true}}", "source": "log"}, {"message": "received ws message {\"action\":\"turbopack-connected\",\"data\":{\"sessionId\":705661393484125}}", "source": "log"}, {"message": "received ws message {\"action\":\"sync\",\"errors\":[],\"warnings\":[],\"hash\":\"\",\"versionInfo\":{\"staleness\":\"fresh\",\"installed\":\"15.4.0-canary.89\"},\"debug\":{},\"devIndicator\":{\"disabledUntil\":0}}", "source": "log"}, {"message": "received ws message {\"action\":\"building\"}", "source": "log"}, {"message": "received ws message {\"action\":\"built\",\"hash\":\"48\",\"errors\":[],\"warnings\":[]}", "source": "log"}, {"message": "received ws message {\"action\":\"serverComponentChanges\",\"hash\":\"49\"}", "source": "log"}, {"message": "received ws message {\"action\":\"building\"}", "source": "log"}, …]

  119 |           await retry(async () => {
  120 |             logs = await browser.log()
> 121 |             expect(logs).toEqual(
      |                          ^
  122 |               expect.arrayContaining([
  123 |                 expect.objectContaining({
  124 |                   message: expect.stringContaining('[Fast Refresh] done'),

  at toEqual (development/app-hmr/hmr.test.ts:121:26)
  at retry (lib/next-test-utils.ts:811:14)
  at development/app-hmr/hmr.test.ts:119:11
  at NextDevInstance.patchFile (lib/next-modes/base.ts:614:9)
  at NextDevInstance.patchFile (lib/next-modes/next-dev.ts:202:16)
  at development/app-hmr/hmr.test.ts:116:9

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/cli/test/index.test.js (turbopack)

  • Image Component Tests > production mode > should apply filter style after image loads
  • Image Component Tests > production mode > should emit image for next/dynamic with non ssr case
Expand output

● Image Component Tests › production mode › should apply filter style after image loads

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 227928, Symbol(trigger_async_id_symbol): 226762, Symbol(kResourceStore): undefined}

  1177 |     const browser = await webdriver(appPort, '/style-filter')
  1178 |     await retry(async () => {
> 1179 |       expect(getSrc(browser, 'img-plain')).toMatch(/^\/_next\/image/)
       |                                            ^
  1180 |     })
  1181 |     await retry(async () => {
  1182 |       expect(getSrc(browser, 'img-blur')).toMatch(/^\/_next\/image/)

  at toMatch (integration/next-image-legacy/default/test/index.test.ts:1179:44)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-legacy/default/test/index.test.ts:1178:5)

● Image Component Tests › production mode › should emit image for next/dynamic with non ssr case

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('#img-plain')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at Playwright.elementByCss [as elementById] (lib/browsers/playwright.ts:379:17)
  at elementById (integration/next-image-legacy/default/test/index.test.ts:63:29)
  at getSrc (integration/next-image-legacy/default/test/index.test.ts:1179:14)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-legacy/default/test/index.test.ts:1178:5)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:409:17)
  at getAttribute (integration/next-image-legacy/default/test/index.test.ts:63:45)
  at getSrc (integration/next-image-legacy/default/test/index.test.ts:1179:14)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-legacy/default/test/index.test.ts:1178:5)

Read more about building and testing Next.js in contributing.md.

__NEXT_EXPERIMENTAL_PPR=true pnpm test-start test/e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts (PPR)

  • parallel-routes-revalidation > should submit the action and revalidate the page data
  • parallel-routes-revalidation > should handle router.refresh() when called in a slot
  • parallel-routes-revalidation > should handle a redirect action when called in a slot
  • parallel-routes-revalidation > should refresh the correct page when a server action triggers a redirect
Expand output

● parallel-routes-revalidation › should submit the action and revalidate the page data

expect(received).toBe(expected) // Object.is equality

Expected: false
Received: {"activeTrace": "http%3A%2F%2Flocalhost%3A36895%2F", "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  14 |       const browser = await next.browser('/')
  15 |       await retry(async () => {
> 16 |         expect(browser.hasElementByCssSelector('#create-entry')).toBe(false)
     |                                                                  ^
  17 |       })
  18 |
  19 |       // there shouldn't be any data yet

  at toBe (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:16:66)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:15:7)

● parallel-routes-revalidation › should handle router.refresh() when called in a slot

expect(received).toBe(expected) // Object.is equality

Expected: false
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  57 |     const browser = await next.browser('/')
  58 |     await retry(async () => {
> 59 |       expect(browser.hasElementByCssSelector('#refresh-router')).toBe(false)
     |                                                                  ^
  60 |     })
  61 |     const currentRandomNumber = (
  62 |       await browser.elementById('random-number')

  at toBe (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:59:66)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:58:5)

● parallel-routes-revalidation › should handle a redirect action when called in a slot

expect(received).toBe(expected) // Object.is equality

Expected: false
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  87 |     const browser = await next.browser('/')
  88 |     await retry(async () => {
> 89 |       expect(browser.hasElementByCssSelector('#redirect')).toBe(false)
     |                                                            ^
  90 |     })
  91 |     await browser.elementByCss("[href='/redirect-modal']").click()
  92 |     await retry(async () => {

  at toBe (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:89:60)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:88:5)

● parallel-routes-revalidation › should refresh the correct page when a server action triggers a redirect

expect(received).toBe(expected) // Object.is equality

Expected: true
Received: {"activeTrace": undefined, "eventCallbacks": {"request": Set {}, "response": Set {}}, Symbol(Symbol.toStringTag): "Playwright"}

  224 |
  225 |       await retry(async () => {
> 226 |         expect(browser.hasElementByCssSelector('#create-entry')).toBe(true)
      |                                                                  ^
  227 |       })
  228 |
  229 |       await browser.elementById('clear-entries').click()

  at toBe (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:226:66)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/app-dir/parallel-routes-revalidation/parallel-routes-revalidation.test.ts:225:7)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/url-imports/test/index.test.js

  • Handle url imports > with next build > should allow url import in css
  • Handle url imports > with next dev > should allow url import in css
Expand output

● Handle url imports › with next dev › should allow url import in css

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 67093, Symbol(trigger_async_id_symbol): 65816, Symbol(kResourceStore): undefined}

  112 |                   .elementByCss('#static-css')
  113 |                   .getComputedCss('background-image')
> 114 |               ).toMatch(
      |                 ^
  115 |                 /^url\("http:\/\/localhost:\d+\/_next\/static\/media\/vercel\.[0-9a-f]{8}\.png"\)$/
  116 |               )
  117 |             })

  at toMatch (integration/url-imports/test/index.test.js:114:17)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/url-imports/test/index.test.js:109:13)

● Handle url imports › with next build › should allow url import in css

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 104975, Symbol(trigger_async_id_symbol): 103821, Symbol(kResourceStore): undefined}

  112 |                   .elementByCss('#static-css')
  113 |                   .getComputedCss('background-image')
> 114 |               ).toMatch(
      |                 ^
  115 |                 /^url\("http:\/\/localhost:\d+\/_next\/static\/media\/vercel\.[0-9a-f]{8}\.png"\)$/
  116 |               )
  117 |             })

  at toMatch (integration/url-imports/test/index.test.js:114:17)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/url-imports/test/index.test.js:109:13)

Read more about building and testing Next.js in contributing.md.

__NEXT_EXPERIMENTAL_PPR=true pnpm test-dev test/e2e/socket-io/index.test.ts (PPR)

  • socket-io > should support socket.io without falling back to polling
Expand output

● socket-io › should support socket.io without falling back to polling

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 40621, Symbol(trigger_async_id_symbol): 40064, Symbol(kResourceStore): undefined}

  33 |     await input1.fill('hello world')
  34 |     await retry(async () => {
> 35 |       expect(input2.inputValue()).toMatch(/hello world/)
     |                                   ^
  36 |     })
  37 |
  38 |     expect(requestsCount).toBeGreaterThan(0)

  at toMatch (e2e/socket-io/index.test.ts:35:35)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (e2e/socket-io/index.test.ts:34:5)

Read more about building and testing Next.js in contributing.md.

pnpm test test/integration/next-image-new/default/test/index.test.ts (turbopack)

  • Image Component Default Tests > development mode > should apply filter style after image loads
  • Image Component Default Tests > development mode > should emit image for next/dynamic with non ssr case
Expand output

● Image Component Default Tests › development mode › should apply filter style after image loads

expect(received).toMatch(expected)

Matcher error: received value must be a string

Received has type:  object
Received has value: {Symbol(async_id_symbol): 725739, Symbol(trigger_async_id_symbol): 724538, Symbol(kResourceStore): undefined}

  1345 |     const browser = await webdriver(appPort, '/style-filter')
  1346 |     await retry(async () => {
> 1347 |       expect(getSrc(browser, 'img-plain')).toMatch(/^\/_next\/image/)
       |                                            ^
  1348 |     })
  1349 |     await retry(async () => {
  1350 |       expect(getSrc(browser, 'img-blur')).toMatch(/^\/_next\/image/)

  at toMatch (integration/next-image-new/default/test/index.test.ts:1347:44)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-new/default/test/index.test.ts:1346:5)

● Image Component Default Tests › development mode › should emit image for next/dynamic with non ssr case

page.waitForSelector: Target page, context or browser has been closed
Call log:
  - waiting for locator('#img-plain')

  454 |   waitForElementByCss(selector: string, timeout = 10_000) {
  455 |     return this.startChain(async () => {
> 456 |       const el = await page.waitForSelector(selector, {
      |                             ^
  457 |         timeout,
  458 |         state: 'attached',
  459 |       })

  at waitForSelector (lib/browsers/playwright.ts:456:29)
  at Playwright._chain (lib/browsers/playwright.ts:568:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:549:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:455:17)
  at Playwright.waitForElementByCss [as elementByCss] (lib/browsers/playwright.ts:375:17)
  at Playwright.elementByCss [as elementById] (lib/browsers/playwright.ts:379:17)
  at elementById (integration/next-image-new/default/test/index.test.ts:66:29)
  at getSrc (integration/next-image-new/default/test/index.test.ts:1347:14)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-new/default/test/index.test.ts:1346:5)
  at Proxy._chain (lib/browsers/playwright.ts:568:23)
  at Proxy._chain (lib/browsers/playwright.ts:544:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:409:17)
  at getAttribute (integration/next-image-new/default/test/index.test.ts:66:45)
  at getSrc (integration/next-image-new/default/test/index.test.ts:1347:14)
  at fn (lib/next-test-utils.ts:811:20)
  at Object.<anonymous> (integration/next-image-new/default/test/index.test.ts:1346:5)

Read more about building and testing Next.js in contributing.md.

@wyattjoh wyattjoh closed this Jun 19, 2025
@wyattjoh wyattjoh reopened this Jun 19, 2025
@ijjk
Copy link
Member

ijjk commented Jun 19, 2025

Stats from current PR

Default Build (Increase detected ⚠️)
General
vercel/next.js canary vercel/next.js test/deprecate-check Change
buildDuration 17.6s 16.2s N/A
buildDurationCached 15.4s 13.4s N/A
nodeModulesSize 437 MB 437 MB N/A
nextStartRea..uration (ms) 397ms 397ms
Client Bundles (main, webpack) Overall increase ⚠️
vercel/next.js canary vercel/next.js test/deprecate-check Change
194b18f3-HASH.js gzip 54.1 kB 54.1 kB N/A
2192.HASH.js gzip 169 B 169 B
4719-HASH.js gzip 5.47 kB 5.44 kB N/A
6236-HASH.js gzip 44.4 kB 45 kB ⚠️ +551 B
framework-HASH.js gzip 57.4 kB 57.4 kB N/A
main-app-HASH.js gzip 252 B 256 B N/A
main-HASH.js gzip 33.5 kB 33.5 kB N/A
webpack-HASH.js gzip 1.71 kB 1.71 kB N/A
Overall change 44.6 kB 45.2 kB ⚠️ +551 B
Legacy Client Bundles (polyfills)
vercel/next.js canary vercel/next.js test/deprecate-check Change
polyfills-HASH.js gzip 39.4 kB 39.4 kB
Overall change 39.4 kB 39.4 kB
Client Pages
vercel/next.js canary vercel/next.js test/deprecate-check Change
_app-HASH.js gzip 193 B 193 B
_error-HASH.js gzip 182 B 182 B
amp-HASH.js gzip 501 B 500 B N/A
css-HASH.js gzip 335 B 333 B N/A
dynamic-HASH.js gzip 1.83 kB 1.83 kB N/A
edge-ssr-HASH.js gzip 256 B 255 B N/A
head-HASH.js gzip 350 B 351 B N/A
hooks-HASH.js gzip 382 B 382 B
image-HASH.js gzip 4.68 kB 4.66 kB N/A
index-HASH.js gzip 259 B 259 B
link-HASH.js gzip 2.52 kB 2.52 kB N/A
routerDirect..HASH.js gzip 319 B 316 B N/A
script-HASH.js gzip 386 B 386 B
withRouter-HASH.js gzip 316 B 315 B N/A
1afbb74e6ecf..834.css gzip 106 B 106 B
Overall change 1.51 kB 1.51 kB
Client Build Manifests
vercel/next.js canary vercel/next.js test/deprecate-check Change
_buildManifest.js gzip 752 B 752 B
Overall change 752 B 752 B
Rendered Page Sizes
vercel/next.js canary vercel/next.js test/deprecate-check Change
index.html gzip 528 B 530 B N/A
link.html gzip 541 B 543 B N/A
withRouter.html gzip 524 B 526 B N/A
Overall change 0 B 0 B
Edge SSR bundle Size
vercel/next.js canary vercel/next.js test/deprecate-check Change
edge-ssr.js gzip 140 kB 140 kB N/A
page.js gzip 236 kB 230 kB N/A
Overall change 0 B 0 B
Middleware size
vercel/next.js canary vercel/next.js test/deprecate-check Change
middleware-b..fest.js gzip 676 B 671 B N/A
middleware-r..fest.js gzip 155 B 157 B N/A
middleware.js gzip 32.4 kB 32.4 kB N/A
edge-runtime..pack.js gzip 853 B 853 B
Overall change 853 B 853 B
Next Runtimes
vercel/next.js canary vercel/next.js test/deprecate-check Change
app-page-exp...dev.js gzip 286 kB 286 kB N/A
app-page-exp..prod.js gzip 162 kB 162 kB
app-page-tur...dev.js gzip 286 kB 286 kB N/A
app-page-tur..prod.js gzip 162 kB 162 kB
app-page-tur...dev.js gzip 275 kB 275 kB N/A
app-page-tur..prod.js gzip 157 kB 157 kB
app-page.run...dev.js gzip 274 kB 274 kB N/A
app-page.run..prod.js gzip 157 kB 157 kB
app-route-ex...dev.js gzip 69.2 kB 69.2 kB
app-route-ex..prod.js gzip 47.6 kB 47.6 kB
app-route-tu...dev.js gzip 69.3 kB 69.3 kB
app-route-tu..prod.js gzip 47.6 kB 47.6 kB
app-route-tu...dev.js gzip 68.6 kB 68.6 kB
app-route-tu..prod.js gzip 47.3 kB 47.3 kB
app-route.ru...dev.js gzip 68.6 kB 68.6 kB
app-route.ru..prod.js gzip 47.3 kB 47.3 kB
dist_client_...dev.js gzip 326 B 326 B
dist_client_...dev.js gzip 328 B 328 B
dist_client_...dev.js gzip 320 B 320 B
dist_client_...dev.js gzip 318 B 318 B
pages-api-tu...dev.js gzip 42.5 kB 42.5 kB
pages-api-tu..prod.js gzip 31.7 kB 31.7 kB
pages-api.ru...dev.js gzip 42.4 kB 42.4 kB
pages-api.ru..prod.js gzip 31.7 kB 31.7 kB N/A
pages-turbo....dev.js gzip 52.7 kB 52.7 kB
pages-turbo...prod.js gzip 39.1 kB 39.1 kB
pages.runtim...dev.js gzip 52.8 kB 52.8 kB
pages.runtim..prod.js gzip 39.2 kB 39.2 kB N/A
server.runti..prod.js gzip 63.8 kB 63.8 kB
Overall change 1.43 MB 1.43 MB
build cache Overall increase ⚠️
vercel/next.js canary vercel/next.js test/deprecate-check Change
0.pack gzip 3.91 MB 3.91 MB ⚠️ +2.41 kB
index.pack gzip 91.3 kB 90.8 kB N/A
Overall change 3.91 MB 3.91 MB ⚠️ +2.41 kB
Diff details
Diff for page.js

Diff too large to display

Diff for middleware.js

Diff too large to display

Diff for edge-ssr.js
failed to diff
Diff for css-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [9813],
   {
-    /***/ 1586: /***/ (
+    /***/ 2628: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/css",
         function () {
-          return __webpack_require__(4362);
+          return __webpack_require__(8707);
         },
       ]);
       if (false) {
@@ -18,14 +18,7 @@
       /***/
     },
 
-    /***/ 4350: /***/ (module) => {
-      // extracted by mini-css-extract-plugin
-      module.exports = { helloWorld: "css_helloWorld__aUdUq" };
-
-      /***/
-    },
-
-    /***/ 4362: /***/ (
+    /***/ 8707: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -39,7 +32,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(5640);
       /* harmony import */ var _css_module_css__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(4350);
+        __webpack_require__(9080);
       /* harmony import */ var _css_module_css__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           _css_module_css__WEBPACK_IMPORTED_MODULE_1__
@@ -58,13 +51,20 @@
 
       /***/
     },
+
+    /***/ 9080: /***/ (module) => {
+      // extracted by mini-css-extract-plugin
+      module.exports = { helloWorld: "css_helloWorld__aUdUq" };
+
+      /***/
+    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(1586)
+      __webpack_exec__(2628)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for dynamic-HASH.js
@@ -1,17 +1,117 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [2291],
   {
-    /***/ 283: /***/ (
+    /***/ 2001: /***/ (
+      __unused_webpack_module,
+      __webpack_exports__,
+      __webpack_require__
+    ) => {
+      "use strict";
+      __webpack_require__.r(__webpack_exports__);
+      /* harmony export */ __webpack_require__.d(__webpack_exports__, {
+        /* harmony export */ __N_SSP: () => /* binding */ __N_SSP,
+        /* harmony export */ default: () => __WEBPACK_DEFAULT_EXPORT__,
+        /* harmony export */
+      });
+      /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
+        __webpack_require__(5640);
+      /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1__ =
+        __webpack_require__(9553);
+      /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1___default =
+        /*#__PURE__*/ __webpack_require__.n(
+          next_dynamic__WEBPACK_IMPORTED_MODULE_1__
+        );
+
+      const DynamicHello = next_dynamic__WEBPACK_IMPORTED_MODULE_1___default()(
+        () =>
+          __webpack_require__
+            .e(/* import() */ 8042)
+            .then(__webpack_require__.bind(__webpack_require__, 8042))
+            .then((mod) => mod.Hello),
+        {
+          loadableGenerated: {
+            webpack: () => [/*require.resolve*/ 8042],
+          },
+        }
+      );
+      const Page = () =>
+        /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(
+          react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.Fragment,
+          {
+            children: [
+              /*#__PURE__*/ (0,
+              react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("p", {
+                children: "testing next/dynamic size",
+              }),
+              /*#__PURE__*/ (0,
+              react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
+                DynamicHello,
+                {}
+              ),
+            ],
+          }
+        );
+      var __N_SSP = true;
+      /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = Page;
+
+      /***/
+    },
+
+    /***/ 2976: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/dynamic",
+        function () {
+          return __webpack_require__(2001);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 7807: /***/ (
+      __unused_webpack_module,
+      exports,
+      __webpack_require__
+    ) => {
+      "use strict";
+      /* __next_internal_client_entry_do_not_use__  cjs */
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "LoadableContext", {
+        enumerable: true,
+        get: function () {
+          return LoadableContext;
+        },
+      });
+      const _interop_require_default = __webpack_require__(1532);
+      const _react = /*#__PURE__*/ _interop_require_default._(
+        __webpack_require__(148)
+      );
+      const LoadableContext = _react.default.createContext(null);
+      if (false) {
+      } //# sourceMappingURL=loadable-context.shared-runtime.js.map
+
+      /***/
+    },
+
+    /***/ 9553: /***/ (
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(6990);
+      module.exports = __webpack_require__(9986);
 
       /***/
     },
 
-    /***/ 505: /***/ (
+    /***/ 9829: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -53,7 +153,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
       const _react = /*#__PURE__*/ _interop_require_default._(
         __webpack_require__(148)
       );
-      const _loadablecontextsharedruntime = __webpack_require__(6179);
+      const _loadablecontextsharedruntime = __webpack_require__(7807);
       function resolve(obj) {
         return obj && obj.default ? obj.default : obj;
       }
@@ -288,90 +388,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
       /***/
     },
 
-    /***/ 5703: /***/ (
-      __unused_webpack_module,
-      __webpack_exports__,
-      __webpack_require__
-    ) => {
-      "use strict";
-      __webpack_require__.r(__webpack_exports__);
-      /* harmony export */ __webpack_require__.d(__webpack_exports__, {
-        /* harmony export */ __N_SSP: () => /* binding */ __N_SSP,
-        /* harmony export */ default: () => __WEBPACK_DEFAULT_EXPORT__,
-        /* harmony export */
-      });
-      /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
-        __webpack_require__(5640);
-      /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(283);
-      /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1___default =
-        /*#__PURE__*/ __webpack_require__.n(
-          next_dynamic__WEBPACK_IMPORTED_MODULE_1__
-        );
-
-      const DynamicHello = next_dynamic__WEBPACK_IMPORTED_MODULE_1___default()(
-        () =>
-          __webpack_require__
-            .e(/* import() */ 2192)
-            .then(__webpack_require__.bind(__webpack_require__, 2192))
-            .then((mod) => mod.Hello),
-        {
-          loadableGenerated: {
-            webpack: () => [/*require.resolve*/ 2192],
-          },
-        }
-      );
-      const Page = () =>
-        /*#__PURE__*/ (0, react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(
-          react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.Fragment,
-          {
-            children: [
-              /*#__PURE__*/ (0,
-              react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("p", {
-                children: "testing next/dynamic size",
-              }),
-              /*#__PURE__*/ (0,
-              react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
-                DynamicHello,
-                {}
-              ),
-            ],
-          }
-        );
-      var __N_SSP = true;
-      /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = Page;
-
-      /***/
-    },
-
-    /***/ 6179: /***/ (
-      __unused_webpack_module,
-      exports,
-      __webpack_require__
-    ) => {
-      "use strict";
-      /* __next_internal_client_entry_do_not_use__  cjs */
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "LoadableContext", {
-        enumerable: true,
-        get: function () {
-          return LoadableContext;
-        },
-      });
-      const _interop_require_default = __webpack_require__(1532);
-      const _react = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(148)
-      );
-      const LoadableContext = _react.default.createContext(null);
-      if (false) {
-      } //# sourceMappingURL=loadable-context.shared-runtime.js.map
-
-      /***/
-    },
-
-    /***/ 6990: /***/ (module, exports, __webpack_require__) => {
+    /***/ 9986: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -404,7 +421,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
         __webpack_require__(148)
       );
       const _loadablesharedruntime = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(505)
+        __webpack_require__(9829)
       );
       const isServerSide = "object" === "undefined";
       // Normalize loader to return the module as form { default: Component } for `React.lazy`.
@@ -504,30 +521,13 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
 
       /***/
     },
-
-    /***/ 9254: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/dynamic",
-        function () {
-          return __webpack_require__(5703);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(9254)
+      __webpack_exec__(2976)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for hooks-HASH.js
@@ -1,24 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [9804],
   {
-    /***/ 1664: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/hooks",
-        function () {
-          return __webpack_require__(6130);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 6130: /***/ (
+    /***/ 4756: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -76,13 +59,30 @@
 
       /***/
     },
+
+    /***/ 5426: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/hooks",
+        function () {
+          return __webpack_require__(4756);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(1664)
+      __webpack_exec__(5426)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for image-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [2983],
   {
-    /***/ 2198: /***/ (
+    /***/ 264: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/image",
         function () {
-          return __webpack_require__(3444);
+          return __webpack_require__(3594);
         },
       ]);
       if (false) {
@@ -18,7 +18,143 @@
       /***/
     },
 
-    /***/ 2514: /***/ (
+    /***/ 1765: /***/ (module, exports, __webpack_require__) => {
+      "use strict";
+
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "useMergedRef", {
+        enumerable: true,
+        get: function () {
+          return useMergedRef;
+        },
+      });
+      const _react = __webpack_require__(148);
+      function useMergedRef(refA, refB) {
+        const cleanupA = (0, _react.useRef)(null);
+        const cleanupB = (0, _react.useRef)(null);
+        // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.
+        // (this happens often if the user doesn't pass a ref to Link/Form/Image)
+        // But this can cause us to leak a cleanup-ref into user code (e.g. via `<Link legacyBehavior>`),
+        // and the user might pass that ref into ref-merging library that doesn't support cleanup refs
+        // (because it hasn't been updated for React 19)
+        // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.
+        // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.
+        return (0, _react.useCallback)(
+          (current) => {
+            if (current === null) {
+              const cleanupFnA = cleanupA.current;
+              if (cleanupFnA) {
+                cleanupA.current = null;
+                cleanupFnA();
+              }
+              const cleanupFnB = cleanupB.current;
+              if (cleanupFnB) {
+                cleanupB.current = null;
+                cleanupFnB();
+              }
+            } else {
+              if (refA) {
+                cleanupA.current = applyRef(refA, current);
+              }
+              if (refB) {
+                cleanupB.current = applyRef(refB, current);
+              }
+            }
+          },
+          [refA, refB]
+        );
+      }
+      function applyRef(refA, current) {
+        if (typeof refA === "function") {
+          const cleanup = refA(current);
+          if (typeof cleanup === "function") {
+            return cleanup;
+          } else {
+            return () => refA(null);
+          }
+        } else {
+          refA.current = current;
+          return () => {
+            refA.current = null;
+          };
+        }
+      }
+      if (
+        (typeof exports.default === "function" ||
+          (typeof exports.default === "object" && exports.default !== null)) &&
+        typeof exports.default.__esModule === "undefined"
+      ) {
+        Object.defineProperty(exports.default, "__esModule", {
+          value: true,
+        });
+        Object.assign(exports.default, exports);
+        module.exports = exports.default;
+      } //# sourceMappingURL=use-merged-ref.js.map
+
+      /***/
+    },
+
+    /***/ 3353: /***/ (
+      module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      module.exports = __webpack_require__(5526);
+
+      /***/
+    },
+
+    /***/ 3594: /***/ (
+      __unused_webpack_module,
+      __webpack_exports__,
+      __webpack_require__
+    ) => {
+      "use strict";
+      // ESM COMPAT FLAG
+      __webpack_require__.r(__webpack_exports__);
+
+      // EXPORTS
+      __webpack_require__.d(__webpack_exports__, {
+        __N_SSP: () => /* binding */ __N_SSP,
+        default: () => /* binding */ pages_image,
+      });
+
+      // EXTERNAL MODULE: ./node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js
+      var jsx_runtime = __webpack_require__(5640);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/image.js
+      var next_image = __webpack_require__(3353);
+      var image_default = /*#__PURE__*/ __webpack_require__.n(next_image); // ./pages/nextjs.png
+      /* harmony default export */ const nextjs = {
+        src: "/_next/static/media/nextjs.cae0b805.png",
+        height: 1347,
+        width: 1626,
+        blurDataURL:
+          "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAHCAMAAAACh/xsAAAAD1BMVEX////x8fH6+vrb29vo6Oh8o70bAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAH0lEQVR4nGNgwARMjIyMjCAGCzMzMwsTRISJCcRABwAEcAAkLCQfgAAAAABJRU5ErkJggg==",
+        blurWidth: 8,
+        blurHeight: 7,
+      }; // ./pages/image.js
+      function ImagePage(props) {
+        return /*#__PURE__*/ (0, jsx_runtime.jsxs)(jsx_runtime.Fragment, {
+          children: [
+            /*#__PURE__*/ (0, jsx_runtime.jsx)("h1", {
+              children: "next/image example",
+            }),
+            /*#__PURE__*/ (0, jsx_runtime.jsx)(image_default(), {
+              src: nextjs,
+              placeholder: "blur",
+            }),
+          ],
+        });
+      }
+      var __N_SSP = true;
+      /* harmony default export */ const pages_image = ImagePage;
+
+      /***/
+    },
+
+    /***/ 3854: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -34,9 +170,9 @@
           return getImgProps;
         },
       });
-      const _warnonce = __webpack_require__(5127);
-      const _imageblursvg = __webpack_require__(4287);
-      const _imageconfig = __webpack_require__(2795);
+      const _warnonce = __webpack_require__(3603);
+      const _imageblursvg = __webpack_require__(7835);
+      const _imageconfig = __webpack_require__(6799);
       const VALID_LOADING_VALUES =
         /* unused pure expression or super */ null && [
           "lazy",
@@ -463,55 +599,69 @@
       /***/
     },
 
-    /***/ 3444: /***/ (
+    /***/ 5526: /***/ (
       __unused_webpack_module,
-      __webpack_exports__,
+      exports,
       __webpack_require__
     ) => {
       "use strict";
-      // ESM COMPAT FLAG
-      __webpack_require__.r(__webpack_exports__);
 
-      // EXPORTS
-      __webpack_require__.d(__webpack_exports__, {
-        __N_SSP: () => /* binding */ __N_SSP,
-        default: () => /* binding */ pages_image,
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
       });
-
-      // EXTERNAL MODULE: ./node_modules/.pnpm/react@19.1.0/node_modules/react/jsx-runtime.js
-      var jsx_runtime = __webpack_require__(5640);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/image.js
-      var next_image = __webpack_require__(6359);
-      var image_default = /*#__PURE__*/ __webpack_require__.n(next_image); // ./pages/nextjs.png
-      /* harmony default export */ const nextjs = {
-        src: "/_next/static/media/nextjs.cae0b805.png",
-        height: 1347,
-        width: 1626,
-        blurDataURL:
-          "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAHCAMAAAACh/xsAAAAD1BMVEX////x8fH6+vrb29vo6Oh8o70bAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAH0lEQVR4nGNgwARMjIyMjCAGCzMzMwsTRISJCcRABwAEcAAkLCQfgAAAAABJRU5ErkJggg==",
-        blurWidth: 8,
-        blurHeight: 7,
-      }; // ./pages/image.js
-      function ImagePage(props) {
-        return /*#__PURE__*/ (0, jsx_runtime.jsxs)(jsx_runtime.Fragment, {
-          children: [
-            /*#__PURE__*/ (0, jsx_runtime.jsx)("h1", {
-              children: "next/image example",
-            }),
-            /*#__PURE__*/ (0, jsx_runtime.jsx)(image_default(), {
-              src: nextjs,
-              placeholder: "blur",
-            }),
-          ],
+      0 && 0;
+      function _export(target, all) {
+        for (var name in all)
+          Object.defineProperty(target, name, {
+            enumerable: true,
+            get: all[name],
+          });
+      }
+      _export(exports, {
+        default: function () {
+          return _default;
+        },
+        getImageProps: function () {
+          return getImageProps;
+        },
+      });
+      const _interop_require_default = __webpack_require__(1532);
+      const _getimgprops = __webpack_require__(3854);
+      const _imagecomponent = __webpack_require__(8350);
+      const _imageloader = /*#__PURE__*/ _interop_require_default._(
+        __webpack_require__(8825)
+      );
+      function getImageProps(imgProps) {
+        const { props } = (0, _getimgprops.getImgProps)(imgProps, {
+          defaultLoader: _imageloader.default,
+          // This is replaced by webpack define plugin
+          imgConf: {
+            deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
+            imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
+            path: "/_next/image",
+            loader: "default",
+            dangerouslyAllowSVG: false,
+            unoptimized: false,
+          },
         });
+        // Normally we don't care about undefined props because we pass to JSX,
+        // but this exported function could be used by the end user for anything
+        // so we delete undefined props to clean it up a little.
+        for (const [key, value] of Object.entries(props)) {
+          if (value === undefined) {
+            delete props[key];
+          }
+        }
+        return {
+          props,
+        };
       }
-      var __N_SSP = true;
-      /* harmony default export */ const pages_image = ImagePage;
+      const _default = _imagecomponent.Image; //# sourceMappingURL=image-external.js.map
 
       /***/
     },
 
-    /***/ 4287: /***/ (__unused_webpack_module, exports) => {
+    /***/ 7835: /***/ (__unused_webpack_module, exports) => {
       "use strict";
       /**
        * A shared function, used on both client and server, to generate a SVG blur placeholder.
@@ -566,85 +716,7 @@
       /***/
     },
 
-    /***/ 4985: /***/ (module, exports, __webpack_require__) => {
-      "use strict";
-
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "useMergedRef", {
-        enumerable: true,
-        get: function () {
-          return useMergedRef;
-        },
-      });
-      const _react = __webpack_require__(148);
-      function useMergedRef(refA, refB) {
-        const cleanupA = (0, _react.useRef)(null);
-        const cleanupB = (0, _react.useRef)(null);
-        // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.
-        // (this happens often if the user doesn't pass a ref to Link/Form/Image)
-        // But this can cause us to leak a cleanup-ref into user code (e.g. via `<Link legacyBehavior>`),
-        // and the user might pass that ref into ref-merging library that doesn't support cleanup refs
-        // (because it hasn't been updated for React 19)
-        // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.
-        // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.
-        return (0, _react.useCallback)(
-          (current) => {
-            if (current === null) {
-              const cleanupFnA = cleanupA.current;
-              if (cleanupFnA) {
-                cleanupA.current = null;
-                cleanupFnA();
-              }
-              const cleanupFnB = cleanupB.current;
-              if (cleanupFnB) {
-                cleanupB.current = null;
-                cleanupFnB();
-              }
-            } else {
-              if (refA) {
-                cleanupA.current = applyRef(refA, current);
-              }
-              if (refB) {
-                cleanupB.current = applyRef(refB, current);
-              }
-            }
-          },
-          [refA, refB]
-        );
-      }
-      function applyRef(refA, current) {
-        if (typeof refA === "function") {
-          const cleanup = refA(current);
-          if (typeof cleanup === "function") {
-            return cleanup;
-          } else {
-            return () => refA(null);
-          }
-        } else {
-          refA.current = current;
-          return () => {
-            refA.current = null;
-          };
-        }
-      }
-      if (
-        (typeof exports.default === "function" ||
-          (typeof exports.default === "object" && exports.default !== null)) &&
-        typeof exports.default.__esModule === "undefined"
-      ) {
-        Object.defineProperty(exports.default, "__esModule", {
-          value: true,
-        });
-        Object.assign(exports.default, exports);
-        module.exports = exports.default;
-      } //# sourceMappingURL=use-merged-ref.js.map
-
-      /***/
-    },
-
-    /***/ 5898: /***/ (module, exports, __webpack_require__) => {
+    /***/ 8350: /***/ (module, exports, __webpack_require__) => {
       "use strict";
       /* __next_internal_client_entry_do_not_use__  cjs */
       Object.defineProperty(exports, "__esModule", {
@@ -666,17 +738,17 @@
         __webpack_require__(7897)
       );
       const _head = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(5207)
+        __webpack_require__(8843)
       );
-      const _getimgprops = __webpack_require__(2514);
-      const _imageconfig = __webpack_require__(2795);
-      const _imageconfigcontextsharedruntime = __webpack_require__(2349);
-      const _warnonce = __webpack_require__(5127);
-      const _routercontextsharedruntime = __webpack_require__(3556);
+      const _getimgprops = __webpack_require__(3854);
+      const _imageconfig = __webpack_require__(6799);
+      const _imageconfigcontextsharedruntime = __webpack_require__(3905);
+      const _warnonce = __webpack_require__(3603);
+      const _routercontextsharedruntime = __webpack_require__(6712);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(5970)
+        __webpack_require__(8825)
       );
-      const _usemergedref = __webpack_require__(4985);
+      const _usemergedref = __webpack_require__(1765);
       // This is replaced by webpack define plugin
       const configEnv = {
         deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
@@ -1002,7 +1074,7 @@
       /***/
     },
 
-    /***/ 5970: /***/ (__unused_webpack_module, exports) => {
+    /***/ 8825: /***/ (__unused_webpack_module, exports) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -1048,85 +1120,13 @@
 
       /***/
     },
-
-    /***/ 6359: /***/ (
-      module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      module.exports = __webpack_require__(8986);
-
-      /***/
-    },
-
-    /***/ 8986: /***/ (
-      __unused_webpack_module,
-      exports,
-      __webpack_require__
-    ) => {
-      "use strict";
-
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      0 && 0;
-      function _export(target, all) {
-        for (var name in all)
-          Object.defineProperty(target, name, {
-            enumerable: true,
-            get: all[name],
-          });
-      }
-      _export(exports, {
-        default: function () {
-          return _default;
-        },
-        getImageProps: function () {
-          return getImageProps;
-        },
-      });
-      const _interop_require_default = __webpack_require__(1532);
-      const _getimgprops = __webpack_require__(2514);
-      const _imagecomponent = __webpack_require__(5898);
-      const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(5970)
-      );
-      function getImageProps(imgProps) {
-        const { props } = (0, _getimgprops.getImgProps)(imgProps, {
-          defaultLoader: _imageloader.default,
-          // This is replaced by webpack define plugin
-          imgConf: {
-            deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
-            imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
-            path: "/_next/image",
-            loader: "default",
-            dangerouslyAllowSVG: false,
-            unoptimized: false,
-          },
-        });
-        // Normally we don't care about undefined props because we pass to JSX,
-        // but this exported function could be used by the end user for anything
-        // so we delete undefined props to clean it up a little.
-        for (const [key, value] of Object.entries(props)) {
-          if (value === undefined) {
-            delete props[key];
-          }
-        }
-        return {
-          props,
-        };
-      }
-      const _default = _imagecomponent.Image; //# sourceMappingURL=image-external.js.map
-
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(2198)
+      __webpack_exec__(264)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for index-HASH.js
@@ -1,7 +1,24 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [3332],
   {
-    /***/ 9418: /***/ (
+    /***/ 8230: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/",
+        function () {
+          return __webpack_require__(8696);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 8696: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -19,30 +36,13 @@
 
       /***/
     },
-
-    /***/ 9532: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/",
-        function () {
-          return __webpack_require__(9418);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(9532)
+      __webpack_exec__(8230)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for link-HASH.js
@@ -1,125 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [4672],
   {
-    /***/ 1854: /***/ (
-      __unused_webpack_module,
-      __webpack_exports__,
-      __webpack_require__
-    ) => {
-      "use strict";
-      __webpack_require__.r(__webpack_exports__);
-      /* harmony export */ __webpack_require__.d(__webpack_exports__, {
-        /* harmony export */ __N_SSP: () => /* binding */ __N_SSP,
-        /* harmony export */ default: () => __WEBPACK_DEFAULT_EXPORT__,
-        /* harmony export */
-      });
-      /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
-        __webpack_require__(5640);
-      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(8770);
-      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1___default =
-        /*#__PURE__*/ __webpack_require__.n(
-          next_link__WEBPACK_IMPORTED_MODULE_1__
-        );
-
-      function aLink(props) {
-        return /*#__PURE__*/ (0,
-        react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
-          children: [
-            /*#__PURE__*/ (0,
-            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("h3", {
-              children: "A Link page!",
-            }),
-            /*#__PURE__*/ (0,
-            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
-              next_link__WEBPACK_IMPORTED_MODULE_1___default(),
-              {
-                href: "/",
-                children: "Go to /",
-              }
-            ),
-          ],
-        });
-      }
-      var __N_SSP = true;
-      /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = aLink;
-
-      /***/
-    },
-
-    /***/ 3199: /***/ (__unused_webpack_module, exports) => {
-      "use strict";
-
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "errorOnce", {
-        enumerable: true,
-        get: function () {
-          return errorOnce;
-        },
-      });
-      let errorOnce = (_) => {};
-      if (false) {
-      } //# sourceMappingURL=error-once.js.map
-
-      /***/
-    },
-
-    /***/ 3568: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/link",
-        function () {
-          return __webpack_require__(1854);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 3857: /***/ (module, exports, __webpack_require__) => {
-      "use strict";
-
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "getDomainLocale", {
-        enumerable: true,
-        get: function () {
-          return getDomainLocale;
-        },
-      });
-      const _normalizetrailingslash = __webpack_require__(4869);
-      const basePath =
-        /* unused pure expression or super */ null && (false || "");
-      function getDomainLocale(path, locale, locales, domainLocales) {
-        if (false) {
-        } else {
-          return false;
-        }
-      }
-      if (
-        (typeof exports.default === "function" ||
-          (typeof exports.default === "object" && exports.default !== null)) &&
-        typeof exports.default.__esModule === "undefined"
-      ) {
-        Object.defineProperty(exports.default, "__esModule", {
-          value: true,
-        });
-        Object.assign(exports.default, exports);
-        module.exports = exports.default;
-      } //# sourceMappingURL=get-domain-locale.js.map
-
-      /***/
-    },
-
-    /***/ 3947: /***/ (module, exports, __webpack_require__) => {
+    /***/ 591: /***/ (module, exports, __webpack_require__) => {
       "use strict";
       /* __next_internal_client_entry_do_not_use__  cjs */
       Object.defineProperty(exports, "__esModule", {
@@ -146,17 +28,17 @@
       const _react = /*#__PURE__*/ _interop_require_wildcard._(
         __webpack_require__(148)
       );
-      const _resolvehref = __webpack_require__(3161);
-      const _islocalurl = __webpack_require__(2309);
-      const _formaturl = __webpack_require__(3768);
-      const _utils = __webpack_require__(5554);
-      const _addlocale = __webpack_require__(7591);
-      const _routercontextsharedruntime = __webpack_require__(3556);
-      const _useintersection = __webpack_require__(5624);
-      const _getdomainlocale = __webpack_require__(3857);
-      const _addbasepath = __webpack_require__(4356);
-      const _usemergedref = __webpack_require__(4985);
-      const _erroronce = __webpack_require__(3199);
+      const _resolvehref = __webpack_require__(5837);
+      const _islocalurl = __webpack_require__(5953);
+      const _formaturl = __webpack_require__(6212);
+      const _utils = __webpack_require__(6950);
+      const _addlocale = __webpack_require__(6467);
+      const _routercontextsharedruntime = __webpack_require__(6712);
+      const _useintersection = __webpack_require__(9692);
+      const _getdomainlocale = __webpack_require__(6850);
+      const _addbasepath = __webpack_require__(4928);
+      const _usemergedref = __webpack_require__(1765);
+      const _erroronce = __webpack_require__(8659);
       const prefetched = new Set();
       function prefetch(router, href, as, options) {
         if (false) {
@@ -545,7 +427,17 @@
       /***/
     },
 
-    /***/ 4985: /***/ (module, exports, __webpack_require__) => {
+    /***/ 1148: /***/ (
+      module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      module.exports = __webpack_require__(591);
+
+      /***/
+    },
+
+    /***/ 1765: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -623,7 +515,125 @@
       /***/
     },
 
-    /***/ 5624: /***/ (module, exports, __webpack_require__) => {
+    /***/ 5436: /***/ (
+      __unused_webpack_module,
+      __webpack_exports__,
+      __webpack_require__
+    ) => {
+      "use strict";
+      __webpack_require__.r(__webpack_exports__);
+      /* harmony export */ __webpack_require__.d(__webpack_exports__, {
+        /* harmony export */ __N_SSP: () => /* binding */ __N_SSP,
+        /* harmony export */ default: () => __WEBPACK_DEFAULT_EXPORT__,
+        /* harmony export */
+      });
+      /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
+        __webpack_require__(5640);
+      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1__ =
+        __webpack_require__(1148);
+      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1___default =
+        /*#__PURE__*/ __webpack_require__.n(
+          next_link__WEBPACK_IMPORTED_MODULE_1__
+        );
+
+      function aLink(props) {
+        return /*#__PURE__*/ (0,
+        react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
+          children: [
+            /*#__PURE__*/ (0,
+            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("h3", {
+              children: "A Link page!",
+            }),
+            /*#__PURE__*/ (0,
+            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
+              next_link__WEBPACK_IMPORTED_MODULE_1___default(),
+              {
+                href: "/",
+                children: "Go to /",
+              }
+            ),
+          ],
+        });
+      }
+      var __N_SSP = true;
+      /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = aLink;
+
+      /***/
+    },
+
+    /***/ 6850: /***/ (module, exports, __webpack_require__) => {
+      "use strict";
+
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "getDomainLocale", {
+        enumerable: true,
+        get: function () {
+          return getDomainLocale;
+        },
+      });
+      const _normalizetrailingslash = __webpack_require__(6457);
+      const basePath =
+        /* unused pure expression or super */ null && (false || "");
+      function getDomainLocale(path, locale, locales, domainLocales) {
+        if (false) {
+        } else {
+          return false;
+        }
+      }
+      if (
+        (typeof exports.default === "function" ||
+          (typeof exports.default === "object" && exports.default !== null)) &&
+        typeof exports.default.__esModule === "undefined"
+      ) {
+        Object.defineProperty(exports.default, "__esModule", {
+          value: true,
+        });
+        Object.assign(exports.default, exports);
+        module.exports = exports.default;
+      } //# sourceMappingURL=get-domain-locale.js.map
+
+      /***/
+    },
+
+    /***/ 8659: /***/ (__unused_webpack_module, exports) => {
+      "use strict";
+
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "errorOnce", {
+        enumerable: true,
+        get: function () {
+          return errorOnce;
+        },
+      });
+      let errorOnce = (_) => {};
+      if (false) {
+      } //# sourceMappingURL=error-once.js.map
+
+      /***/
+    },
+
+    /***/ 9666: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/link",
+        function () {
+          return __webpack_require__(5436);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 9692: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -636,7 +646,7 @@
         },
       });
       const _react = __webpack_require__(148);
-      const _requestidlecallback = __webpack_require__(3543);
+      const _requestidlecallback = __webpack_require__(315);
       const hasIntersectionObserver =
         typeof IntersectionObserver === "function";
       const observers = new Map();
@@ -748,23 +758,13 @@
 
       /***/
     },
-
-    /***/ 8770: /***/ (
-      module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      module.exports = __webpack_require__(3947);
-
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(3568)
+      __webpack_exec__(9666)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for routerDirect-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [188],
   {
-    /***/ 3618: /***/ (
+    /***/ 76: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -16,7 +16,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(5640);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(4631);
+        __webpack_require__(9413);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -36,17 +36,7 @@
       /***/
     },
 
-    /***/ 4631: /***/ (
-      module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      module.exports = __webpack_require__(7086);
-
-      /***/
-    },
-
-    /***/ 7824: /***/ (
+    /***/ 1810: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -54,7 +44,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/routerDirect",
         function () {
-          return __webpack_require__(3618);
+          return __webpack_require__(76);
         },
       ]);
       if (false) {
@@ -62,13 +52,23 @@
 
       /***/
     },
+
+    /***/ 9413: /***/ (
+      module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      module.exports = __webpack_require__(5282);
+
+      /***/
+    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(7824)
+      __webpack_exec__(1810)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for script-HASH.js
@@ -1,24 +1,17 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [1209],
   {
-    /***/ 1984: /***/ (
-      __unused_webpack_module,
+    /***/ 2227: /***/ (
+      module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/script",
-        function () {
-          return __webpack_require__(5769);
-        },
-      ]);
-      if (false) {
-      }
+      module.exports = __webpack_require__(5984);
 
       /***/
     },
 
-    /***/ 5769: /***/ (
+    /***/ 3043: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -33,7 +26,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(5640);
       /* harmony import */ var next_script__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(8293);
+        __webpack_require__(2227);
       /* harmony import */ var next_script__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_script__WEBPACK_IMPORTED_MODULE_1__
@@ -66,12 +59,19 @@
       /***/
     },
 
-    /***/ 8293: /***/ (
-      module,
+    /***/ 3642: /***/ (
+      __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(900);
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/script",
+        function () {
+          return __webpack_require__(3043);
+        },
+      ]);
+      if (false) {
+      }
 
       /***/
     },
@@ -81,7 +81,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(1984)
+      __webpack_exec__(3642)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for withRouter-HASH.js
@@ -1,34 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [3263],
   {
-    /***/ 4631: /***/ (
-      module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      module.exports = __webpack_require__(7086);
-
-      /***/
-    },
-
-    /***/ 9216: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/withRouter",
-        function () {
-          return __webpack_require__(9803);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 9803: /***/ (
+    /***/ 1089: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -43,7 +16,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(5640);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(4631);
+        __webpack_require__(9413);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -61,13 +34,40 @@
 
       /***/
     },
+
+    /***/ 3962: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/withRouter",
+        function () {
+          return __webpack_require__(1089);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 9413: /***/ (
+      module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      module.exports = __webpack_require__(5282);
+
+      /***/
+    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(9216)
+      __webpack_exec__(3962)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for 4719-HASH.js

Diff too large to display

Diff for 6236-HASH.js

Diff too large to display

Diff for main-HASH.js

Diff too large to display

Diff for main-app-HASH.js
@@ -1,64 +1,64 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [4977],
   {
-    /***/ 3505: /***/ () => {
-      /* (ignored) */
-      /***/
-    },
-
-    /***/ 6578: /***/ (
+    /***/ 1206: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 8790, 23)
+        __webpack_require__.t.bind(__webpack_require__, 5356, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 7382, 23)
+        __webpack_require__.t.bind(__webpack_require__, 4304, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 9442, 23)
+        __webpack_require__.t.bind(__webpack_require__, 3152, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 94, 23)
+        __webpack_require__.t.bind(__webpack_require__, 9464, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 693, 23)
+        __webpack_require__.t.bind(__webpack_require__, 1675, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 2439, 23)
+        __webpack_require__.t.bind(__webpack_require__, 7601, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 5083, 23)
+        __webpack_require__.t.bind(__webpack_require__, 2553, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 8103, 23)
+        __webpack_require__.t.bind(__webpack_require__, 1925, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 5625, 23)
+        __webpack_require__.t.bind(__webpack_require__, 959, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 4247, 23)
+        __webpack_require__.t.bind(__webpack_require__, 9389, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 5602, 23)
+        __webpack_require__.t.bind(__webpack_require__, 8628, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 5223)
+        __webpack_require__.bind(__webpack_require__, 8685)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 227, 23)
+        __webpack_require__.t.bind(__webpack_require__, 3077, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 6734, 23)
+        __webpack_require__.t.bind(__webpack_require__, 7812, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 4120, 23)
+        __webpack_require__.t.bind(__webpack_require__, 5774, 23)
       );
 
       /***/
     },
+
+    /***/ 3579: /***/ () => {
+      /* (ignored) */
+      /***/
+    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
@@ -66,8 +66,8 @@
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(
       0,
-      [1305, 6236],
-      () => (__webpack_exec__(9679), __webpack_exec__(6578))
+      [9910, 4860],
+      () => (__webpack_exec__(1389), __webpack_exec__(1206))
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for app-page-exp..ntime.dev.js
failed to diff
Diff for app-page-tur..ntime.dev.js
failed to diff
Diff for app-page-tur..ntime.dev.js
failed to diff
Diff for app-page.runtime.dev.js
failed to diff
Diff for pages-api.ru..time.prod.js

Diff too large to display

Diff for pages.runtime.prod.js

Diff too large to display

Commit: ac0a322

@wyattjoh wyattjoh force-pushed the test/deprecate-check branch 2 times, most recently from 4564d31 to 1d88c32 Compare June 20, 2025 19:52
Refactor test files to use the retry() function with expect assertions
instead of the deprecated check() function. This change affects 206 test
files across the codebase and standardizes the test assertion pattern.
@wyattjoh wyattjoh force-pushed the test/deprecate-check branch from 1d88c32 to ac0a322 Compare June 20, 2025 20:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
created-by: Next.js team PRs by the Next.js team. tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants