From 66b5b0062717ea25860bb6a2b39c25d049117eab Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Thu, 20 Mar 2025 17:20:53 -0700 Subject: [PATCH] test: remove CSS import from set-up file --- tests/setup-tests.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/setup-tests.ts b/tests/setup-tests.ts index 8f22aad9..9b36ceec 100644 --- a/tests/setup-tests.ts +++ b/tests/setup-tests.ts @@ -1,7 +1,6 @@ /// import "@testing-library/jest-dom/vitest"; import { userEvent } from "@testing-library/user-event"; -import "../css/all.css"; // Mock scrollIntoView since it's not implemented in JSDOM Element.prototype.scrollIntoView = vi.fn();