File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ import {
36
36
} from '../utils/helpers.js'
37
37
import {
38
38
hasDefaultTurbopackBuilds ,
39
+ isExperimentalPPRHardDeprecated ,
39
40
nextVersionSatisfies ,
40
41
shouldHaveAppRouterGlobalErrorInPrerenderManifest ,
41
42
shouldHaveAppRouterNotFoundInPrerenderManifest ,
@@ -403,7 +404,7 @@ test.skipIf(process.env.NEXT_VERSION !== 'canary')<FixtureTestContext>(
403
404
'/1' ,
404
405
'/2' ,
405
406
'/404' ,
406
- '/[dynamic]' ,
407
+ isExperimentalPPRHardDeprecated ( ) ? undefined : '/[dynamic]' ,
407
408
shouldHaveAppRouterGlobalErrorInPrerenderManifest ( ) ? '/_global-error' : undefined ,
408
409
shouldHaveAppRouterNotFoundInPrerenderManifest ( ) ? '/_not-found' : undefined ,
409
410
'/index' ,
Original file line number Diff line number Diff line change @@ -58,6 +58,11 @@ export function shouldHaveSlashIndexTagForIndexPage() {
58
58
return nextVersionSatisfies ( '>=v15.6.0-canary.50' )
59
59
}
60
60
61
+ export function isExperimentalPPRHardDeprecated ( ) {
62
+ // https://github.com/vercel/next.js/pull/84280
63
+ return nextVersionSatisfies ( '>=15.6.0-canary.54' )
64
+ }
65
+
61
66
/**
62
67
* Check if current next version requires React 19
63
68
* @param {string } version Next version
You can’t perform that action at this time.
0 commit comments