Skip to content

Commit 31d3779

Browse files
committed
skip firefox in e2e test for now
1 parent cade84d commit 31d3779

4 files changed

Lines changed: 21 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173

174174
runs-on: ubuntu-latest
175175
container:
176-
image: mcr.microsoft.com/playwright:v1.58.0-jammy
176+
image: mcr.microsoft.com/playwright:v1.58.2-jammy
177177
env:
178178
ImageOS: ubuntu22
179179
HOME: /root

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@babel/preset-env": "7.27.2",
3838
"@babel/preset-typescript": "^7.27.1",
3939
"@eslint/js": "^9.29.0",
40-
"@playwright/test": "^1.58.0",
40+
"@playwright/test": "^1.58.2",
4141
"@types/jest": "^30.0.0",
4242
"@types/phoenix": "^1.6.6",
4343
"css.escape": "^1.5.1",

test/e2e/tests/colocated.spec.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,13 @@ test("global colocated css works", async ({ page }) => {
5252
);
5353
});
5454

55-
test("scoped colocated css works", async ({ page }) => {
55+
test("scoped colocated css works", async ({ page, browserName }) => {
56+
// TODO: revisit when
57+
// https://bugzilla.mozilla.org/show_bug.cgi?id=1980526
58+
// https://bugzilla.mozilla.org/show_bug.cgi?id=1914188
59+
// are fixed.
60+
test.skip(browserName === "firefox", "Currently broken");
61+
5662
await page.goto("/colocated");
5763
await syncLV(page);
5864

0 commit comments

Comments
 (0)