import { buildHyperframesRuntimeScript } from "../src/inline-scripts/hyperframesRuntime.engine"; function assert(condition: unknown, message: string): void { if (!condition) { throw new Error(message); } } const baseline = buildHyperframesRuntimeScript(); const parityEnabled = buildHyperframesRuntimeScript({ defaultParityMode: true }); const parityDisabled = buildHyperframesRuntimeScript({ defaultParityMode: false }); const withSourceUrl = buildHyperframesRuntimeScript({ sourceUrl: "hyperframe.runtime.iife.js", }); assert(baseline.includes("window.__player"), "Baseline runtime should include player contract"); assert(parityEnabled.length > 0, "Parity-enabled build should produce non-empty runtime source"); assert(parityDisabled.length > 0, "Parity-disabled build should produce non-empty runtime source"); assert( withSourceUrl.includes("//# sourceURL=hyperframe.runtime.iife.js"), "Build with sourceUrl should append sourceURL comment", ); console.log( JSON.stringify({ event: "hyperframe_runtime_behavior_verified", baselineBytes: baseline.length, parityEnabledBytes: parityEnabled.length, parityDisabledBytes: parityDisabled.length, sourceUrlBytes: withSourceUrl.length, }), );