Files
beacon-web/tests/setup.ts
T
2026-05-23 21:49:14 -04:00

8 lines
165 B
TypeScript

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