Merge main and fix eslint issues in harnessGlobals.ts

Co-authored-by: jakebailey <5341706+jakebailey@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-06 05:58:36 +00:00
parent e9ec0f532e
commit 78102886ea

View File

@ -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;
{