Skip to content

Commit 042bdd7

Browse files
un-skip the ssr loading e2e test in the app-router app (#406)
* un-skip the ssr loading e2e test in the `app-router` app * remove outdated comments
1 parent 12d385d commit 042bdd7

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// NOTE: loading.tsx is currently broken on open - next
2-
// This works locally but not on deployed apps
3-
41
import { expect, test } from "@playwright/test";
52

63
// NOTE: We don't await page load b/c we want to see the Loading page

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
// NOTE: loading.tsx is currently broken on open - next
2-
// This works locally but not on deployed apps
3-
41
import { expect, test } from "@playwright/test";
52

63
// NOTE: We don't await page load b/c we want to see the Loading page
7-
// loading.tsx doesn't currently work: https://github.com/opennextjs/opennextjs-cloudflare/issues/313
8-
test.skip("Server Side Render and loading.tsx", async ({ page }) => {
4+
test("Server Side Render and loading.tsx", async ({ page }) => {
95
test.setTimeout(600000);
106
await page.goto("/");
117
await page.getByRole("link", { name: "SSR" }).click();

0 commit comments

Comments
 (0)