Skip to content

Commit ae20cf7

Browse files
committed
cleanup
1 parent 973a89e commit ae20cf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/shared/benchmark.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class BenchmarkSuite {
8383
type: "suite-tests-complete",
8484
status: "success",
8585
result: measuredValues,
86-
suitename: this.name,
86+
suiteName: this.name,
8787
};
8888
}
8989
}
@@ -145,7 +145,7 @@ export class BenchmarkConnector {
145145
const suite = this.suites[name];
146146
if (!suite)
147147
console.error(`Suite with the name of "${name}" not found!`);
148-
const onProgress = (test) => this._sendMessage(MESSAGE_TYPE.stepComplete, { name: this.name, test });
148+
const onProgress = (step) => this._sendMessage(MESSAGE_TYPE.stepComplete, { name: this.name, step });
149149
const { result } = await suite.runAndRecordSuite(params, onProgress);
150150
this._sendMessage(MESSAGE_TYPE.suiteComplete, { result });
151151
this.disconnect();

0 commit comments

Comments
 (0)