We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcbe438 commit 7d4c3b8Copy full SHA for 7d4c3b8
integration/rsc/rsc-nojs-test.ts
@@ -244,7 +244,12 @@ implementations.forEach((implementation) => {
244
245
test("Suppport throwing external redirect Response from suspended render", async ({
246
page,
247
+ browserName,
248
}) => {
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
+ );
253
await page.goto(`http://localhost:${port}/render-redirect/lazy/external`);
254
await page.waitForURL(`https://example.com/`);
255
await expect(page.getByText("Example Domain")).toBeAttached();
0 commit comments