Skip to content

Commit 4b69e1d

Browse files
run format
1 parent 930472c commit 4b69e1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/benchmark-runner.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export class BenchmarkRunner {
409409
async runSuite(suite) {
410410
// FIXME: Encapsulate more state in the SuiteRunner.
411411
// FIXME: Return and use measured values from SuiteRunner.
412-
const type = suite.type ?? (params.useAsyncSteps && "async" || "default");
412+
const type = suite.type ?? ((params.useAsyncSteps && "async") || "default");
413413
const suiteRunnerClass = SUITE_RUNNER_LOOKUP[type];
414414
const suiteRunner = new suiteRunnerClass(this._frame, this._page, params, suite, this._client, this._measuredValues);
415415
await suiteRunner.run();

0 commit comments

Comments
 (0)