Skip to content

Commit 223a503

Browse files
committed
fix(e2e): skip weather Paris test in webkit - route.fulfill playwright network override doesn't work properly on webkit
1 parent 7cb3abb commit 223a503

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/web-host/tests/repl-plugins.spec.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ test("greet World", async ({ page }) => {
1313
});
1414
});
1515

16-
test("weather Paris", async ({ page }) => {
16+
test("weather Paris", async ({ page, browserName }) => {
17+
test.skip(
18+
browserName === "webkit",
19+
"Skipping weather test on WebKit - network override `route.fulfill` does not work properly",
20+
);
1721
await page.route("https://wttr.in/Paris?format=j1", (route) => {
1822
route.fulfill({
1923
status: 200,

0 commit comments

Comments
 (0)