From 78102886ea6fbed3a4ab0b99dbdff1054be52847 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 05:58:36 +0000 Subject: [PATCH] Merge main and fix eslint issues in harnessGlobals.ts Co-authored-by: jakebailey <5341706+jakebailey@users.noreply.github.com> --- src/harness/harnessGlobals.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/harness/harnessGlobals.ts b/src/harness/harnessGlobals.ts index 05193e79f17..87831e80f66 100644 --- a/src/harness/harnessGlobals.ts +++ b/src/harness/harnessGlobals.ts @@ -5,11 +5,11 @@ import * as ts from "./_namespaces/ts.js"; // this will work in the browser via browserify declare global { // Module transform: converted from ambient declaration - var assert: typeof chai.assert; + var assert: typeof chai.assert; // eslint-disable-line no-var } declare global { // Module transform: converted from ambient declaration - var expect: typeof chai.expect; + var expect: typeof chai.expect; // eslint-disable-line no-var } globalThis.assert = chai.assert; {