// ABOUTME: Test setup file that configures testing utilities. // ABOUTME: Imports jest-dom matchers and sets up cleanup after each test. import "@testing-library/jest-dom/vitest"; import { cleanup } from "@testing-library/react"; import { afterEach } from "vitest"; // Cleanup after each test to avoid component accumulation afterEach(() => { cleanup(); });