Files
bknd/app/__test__/vitest/setup.ts
T
2025-04-02 20:39:08 +02:00

9 lines
200 B
TypeScript

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