Benchmark Version
-
-
- Version: 0.2.0 (2026-05-15) -
- Git commit: 3d66d0b +
- Version: 0.2.0 (2026-05-29) +
- Git commit: 63e9c80
Library Versions
-
diff --git a/index.html b/index.html
index ea17269..52919e8 100644
--- a/index.html
+++ b/index.html
@@ -28,7 +28,7 @@
Additionally, the first iteration of the benchmark may take several minutes to complete.
- Version: 0.2.0 (2026-05-15) (commit: 3d66d0b) + Version: 0.2.0 (2026-05-29) (commit: 63e9c80)
@@ -89,7 +89,7 @@ Score
Detailed Results 0.2.0 (2026-05-15)
+ Detailed Results 0.2.0 (2026-05-29)
Non-standard Parameters
diff --git a/resources/shared/benchmark.mjs b/resources/shared/benchmark.mjs
index 8f5ffa9..f634b99 100644
--- a/resources/shared/benchmark.mjs
+++ b/resources/shared/benchmark.mjs
@@ -128,9 +128,6 @@ export class BenchmarkConnector {
console.error(`Suite with the name of "${event.data.name}" not found!`);
const { result } = await suite.runAndRecord(params, (test) => this.sendMessage({ type: "step-complete", status: "success", appId: this.appId, name: this.name, test }));
this.sendMessage({ type: "suite-complete", status: "success", appId: this.appId, result });
- if (window.top === window) {
- console.log("Running in individual mode. Benchmark execution complete.", result);
- }
this.disconnect();
break;
default:
@@ -147,6 +144,12 @@ export class BenchmarkConnector {
this.sendMessage({ type: "app-ready", status: "success", appId: this.appId });
if (window.top === window) {
+ window.addEventListener("message", (event) => {
+ if (event.data && (event.data.appId === this.appId || event.data.id === this.appId)) {
+ console.log(event.data);
+ }
+ });
+
console.log("Running in individual mode. Automatically starting benchmark...");
// Trigger the run
window.postMessage({