Skip to content

Commit 2d659ac

Browse files
committed
fix: don't use firefox because skill issuing
1 parent 1d30fd7 commit 2d659ac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

fission/src/test/bootstrap/AppMount.test.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe("React Mounting", async () => {
3232
})
3333

3434
test("Static stylesheets load", async () => {
35-
await wait(500) // need time to load from web
35+
await wait(200) // need time to load from web
3636
expect(document.styleSheets.length).toBe(2)
3737
const iterable = document.fonts.values()
3838
let iterator = iterable.next()
@@ -50,7 +50,9 @@ describe("React Mounting", async () => {
5050
// importing main.tsx has side effects that I could not clean up and can only be done once (per file),
5151
// so I am using one test and many annotations. It's possible that there's a better way, but I couldn't
5252
// find it in 4 hours of trying
53-
test("App fully mounts through main.tsx", async ({ annotate }) => {
53+
test("App fully mounts through main.tsx", async ({ annotate, skip }) => {
54+
skip(server.browser == "firefox", "WebGL bug in Github Actions on Firefox")
55+
5456
await import("@/main.tsx")
5557

5658
expect(window.convertAuthToken).toBeDefined()

0 commit comments

Comments
 (0)