File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
examples/e2e/app-router/e2e Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,8 @@ test.describe("dynamicParams set to true", () => {
112112
113113 // In `next start` this test would fail on subsequent requests because `x-nextjs-cache` would be `HIT`
114114 // However, once deployed to AWS, Cloudfront will cache `MISS`
115- test ( "should SSR on a path that was not prebuilt" , async ( { page } ) => {
115+ // We are gonna skip this one for now, turborepo caching can cause this page to be STALE once deployed
116+ test . skip ( "should SSR on a path that was not prebuilt" , async ( { page } ) => {
116117 const res = await page . goto ( "/isr/dynamic-params-true/11" ) ;
117118 expect ( res ?. headers ( ) [ "x-nextjs-cache" ] ) . toEqual ( "MISS" ) ;
118119 const title = await page . getByTestId ( "title" ) . textContent ( ) ;
You can’t perform that action at this time.
0 commit comments