Files
image-tools/src/test/setup.ts
T
2026-09-01 02:47:11 +02:00

9 lines
189 B
TypeScript

import "@testing-library/jest-dom/vitest";
import { afterEach } from "vitest";
import { cleanup } from "@testing-library/react";
afterEach(() => {
cleanup();
localStorage.clear();
});