From cba29e6aae637b04ff6eaf28f74bc15b6242b9ea Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Mon, 16 Feb 2026 19:37:50 -0800 Subject: Remove legacy V2 React frontend and update build/test scripts to focus on Vanilla JS (V3) --- frontend/src/setupTests.ts | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 frontend/src/setupTests.ts (limited to 'frontend/src/setupTests.ts') diff --git a/frontend/src/setupTests.ts b/frontend/src/setupTests.ts deleted file mode 100644 index 5781184..0000000 --- a/frontend/src/setupTests.ts +++ /dev/null @@ -1,40 +0,0 @@ -import '@testing-library/jest-dom'; - -// Mock IntersectionObserver -class IntersectionObserver { - readonly root: Element | null = null; - readonly rootMargin: string = ''; - readonly thresholds: ReadonlyArray = []; - - constructor(_callback: IntersectionObserverCallback, _options?: IntersectionObserverInit) { - // nothing - } - - observe(_target: Element): void { - // nothing - } - - unobserve(_target: Element): void { - // nothing - } - - disconnect(): void { - // nothing - } - - takeRecords(): IntersectionObserverEntry[] { - return []; - } -} - -Object.defineProperty(window, 'IntersectionObserver', { - writable: true, - configurable: true, - value: IntersectionObserver, -}); - -Object.defineProperty(globalThis, 'IntersectionObserver', { - writable: true, - configurable: true, - value: IntersectionObserver, -}); -- cgit v1.2.3