design-evals / vitest.setup.ts
alejandro
chore: snapshot main for hf space
9176e00
raw
history blame contribute delete
165 Bytes
import "@testing-library/jest-dom/vitest";
import { cleanup } from "@testing-library/react";
import { afterEach } from "vitest";
afterEach(() => {
cleanup();
});