Files
gitea-mirror/src/tests/setup.ts
2025-05-18 09:31:23 +05:30

9 lines
224 B
TypeScript

import "@testing-library/jest-dom";
import { expect, afterEach } from "vitest";
import { cleanup } from "@testing-library/react";
// Run cleanup after each test case (e.g. clearing jsdom)
afterEach(() => {
cleanup();
});