Skip to content

Commit 6a67a89

Browse files
committed
fix for latest msedge version 132.0
1 parent b5e11a5 commit 6a67a89

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export async function launchBrowsers(ctx: Context): Promise<Record<string, Brows
6161
browsers[constants.FIREFOX] = await firefox.launch(launchOptions);
6262
break;
6363
case constants.EDGE:
64+
launchOptions.args = ['--headless=new'];
6465
browsers[constants.EDGE] = await chromium.launch({channel: constants.EDGE_CHANNEL, ...launchOptions});
6566
break;
6667
}

0 commit comments

Comments
 (0)