Files
terminal-lab/xterminal/tests/setup.ts
douboer@gmail.com 3b7c1d558a first commit
2026-03-03 13:23:14 +08:00

15 lines
302 B
TypeScript

import { beforeAll } from "vitest";
// Mock scrollTo for jsdom
Object.defineProperty(HTMLElement.prototype, "scrollTo", {
writable: true,
value: function (x: number, y: number) {
this.scrollTop = y;
this.scrollLeft = x;
}
});
beforeAll(() => {
// Any global setup
});