Skip to content

Commit

Permalink
fix: fixed test verbage
Browse files Browse the repository at this point in the history
  • Loading branch information
wyattjoh committed Oct 19, 2024
1 parent fa28ed2 commit 0cb61ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe(`Dynamic IO Prospective Fallback`, () => {
}

expect(next.cliOutput).toContain(
'Error: Route /blog/[slug] has one or more dynamic components without a defined fallback UI.'
'Error: Route /blog/[slug] this component accessed data without a fallback UI available somewhere above it using Suspense.'
)
})

Expand All @@ -46,7 +46,7 @@ describe(`Dynamic IO Prospective Fallback`, () => {
await next.start()

expect(next.cliOutput).not.toContain(
'Error: Route /blog/[slug] has one or more dynamic components without a defined fallback UI.'
'Error: Route /blog/[slug] this component accessed data without a fallback UI available somewhere above it using Suspense.'
)
})
}
Expand Down

0 comments on commit 0cb61ff

Please sign in to comment.