Skip to content

Commit 7139723

Browse files
committed
1 parent 617d05a commit 7139723

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/e2e/app-router/e2e/isr.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)