Skip to content

Commit 338ee95

Browse files
committed
hostage of eslintunicorn/require-array-join-separator
1 parent 6d82bf8 commit 338ee95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

webdriver-ts/src/puppeteerAccess.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,11 @@ export async function startBrowser(benchmarkOptions: BenchmarkOptions): Promise<
125125
"--no-first-run",
126126
"--ash-no-nudges",
127127
"--disable-extensions",
128-
`--disable-features=${disableFeatures.join()}`
128+
`--disable-features=${disableFeatures.join(',')}`
129129
];
130130
if (benchmarkOptions.headless) args.push("--headless=new");
131131

132+
console.log("browser arguments", args);
132133
const browser = await puppeteer.launch({
133134
headless: false,
134135
executablePath: browserPath(benchmarkOptions),

0 commit comments

Comments
 (0)