We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5e11a5 commit 6a67a89Copy full SHA for 6a67a89
src/lib/utils.ts
@@ -61,6 +61,7 @@ export async function launchBrowsers(ctx: Context): Promise<Record<string, Brows
61
browsers[constants.FIREFOX] = await firefox.launch(launchOptions);
62
break;
63
case constants.EDGE:
64
+ launchOptions.args = ['--headless=new'];
65
browsers[constants.EDGE] = await chromium.launch({channel: constants.EDGE_CHANNEL, ...launchOptions});
66
67
}
0 commit comments