File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ test.beforeEach(async ({ page }) => {
55} )
66
77test ( "Zurich meetup link works" , async ( { page } ) => {
8- if ( process . env . CI ) test . slow ( )
8+ if ( process . env . CI ) test . skip ( )
99
1010 const link = page . getByRole ( "link" , { name : / Z u r i c h / i } ) . first ( )
1111 await link . scrollIntoViewIfNeeded ( )
@@ -21,7 +21,7 @@ test("Zurich meetup link works", async ({ page }) => {
2121} )
2222
2323test ( "map matches screenshot" , async ( { page } ) => {
24- if ( process . env . CI ) test . slow ( )
24+ if ( process . env . CI ) test . skip ( )
2525
2626 const mapContainer = page . locator ( "#meetups-map" ) . first ( )
2727 await mapContainer . scrollIntoViewIfNeeded ( )
@@ -48,7 +48,7 @@ test("map matches screenshot", async ({ page }) => {
4848} )
4949
5050test ( "map tooltip appears on marker hover" , async ( { page } ) => {
51- if ( process . env . CI ) test . slow ( )
51+ if ( process . env . CI ) test . skip ( )
5252
5353 const mapContainer = page . locator ( "#meetups-map" ) . first ( )
5454 await mapContainer . scrollIntoViewIfNeeded ( )
You can’t perform that action at this time.
0 commit comments