File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
fission/src/test/bootstrap Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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 ( )
You can’t perform that action at this time.
0 commit comments