diff --git a/resources/suite-runner.mjs b/resources/suite-runner.mjs index 28e2a2509..764084924 100644 --- a/resources/suite-runner.mjs +++ b/resources/suite-runner.mjs @@ -167,7 +167,6 @@ export class RemoteSuiteRunner extends SuiteRunner { // Update progress bar with each completed step. this._startSubscription("step-complete", async (e) => this._updateClient(e.data.test, e.data.name)); // Ask workload to run its own tests. - console.log("Posting message"); this.frame.contentWindow.postMessage({ id: this.appId, key: "benchmark-connector", type: "benchmark-suite", name: this.suite.config?.name || "default" }, "*"); // Capture metrics from the completed tests. const response = await this._subscribeOnce("suite-complete"); @@ -180,7 +179,6 @@ export class RemoteSuiteRunner extends SuiteRunner { } _handlePostMessage(e) { - console.log("Handling post message", e); if (this.postMessageCallbacks.has(e.data.type)) this.postMessageCallbacks.get(e.data.type)(e); } diff --git a/resources/workload-testing-utils.mjs b/resources/workload-testing-utils.mjs index cb24326d5..b0aae5197 100644 --- a/resources/workload-testing-utils.mjs +++ b/resources/workload-testing-utils.mjs @@ -1,5 +1,5 @@ /* - Note: This will eventually come from a separate package and should be minified. + This is loaded by the remote test page and provides utilities & client-side communication with the test runner. */ import { TestRunner } from "./test-runner.mjs";