Skip to content

Commit 7d4c3b8

Browse files
committed
disable firefox test, playwright is broken for this use-case
1 parent dcbe438 commit 7d4c3b8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

integration/rsc/rsc-nojs-test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,12 @@ implementations.forEach((implementation) => {
244244

245245
test("Suppport throwing external redirect Response from suspended render", async ({
246246
page,
247+
browserName,
247248
}) => {
249+
test.skip(
250+
browserName === "firefox",
251+
"Playwright doesn't like external meta redirects for tests. It times out waiting for the URL even though it navigates.",
252+
);
248253
await page.goto(`http://localhost:${port}/render-redirect/lazy/external`);
249254
await page.waitForURL(`https://example.com/`);
250255
await expect(page.getByText("Example Domain")).toBeAttached();

0 commit comments

Comments
 (0)