We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81552f7 commit 3609d31Copy full SHA for 3609d31
tests/utils/next-version-helpers.mjs
@@ -33,9 +33,9 @@ export function isNextCanary() {
33
export function shouldHaveAppRouterNotFoundInPrerenderManifest() {
34
// https://github.com/vercel/next.js/pull/82199
35
36
- // The canary versions are out of band, as there stable/latest patch versions higher than base of canary versions
37
- // and change was not backported to stable versions
38
- return nextVersionSatisfies('>=15.4.2-canary.33') && isNextCanary()
+ // The canary versions are out of band, as there stable/latest patch versions higher than base of canary versions without
+ // the change included
+ return nextVersionSatisfies(isNextCanary() ? '>=15.4.2-canary.33' : '>=15.5.0')
39
}
40
41
/**
0 commit comments