Skip to content

Commit ae05eb3

Browse files
authored
Merge pull request #206 from sushobhit-lt/DOT-4445
fix for latest msedge version 132.0
2 parents d3be5c1 + 7af646e commit ae05eb3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambdatest/smartui-cli",
3-
"version": "4.0.18",
3+
"version": "4.0.19",
44
"description": "A command line interface (CLI) to run SmartUI tests on LambdaTest",
55
"files": [
66
"dist/**/*"

src/lib/utils.ts

+1
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)