mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-07 20:16:46 +03:00
9 lines
224 B
TypeScript
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();
|
|
});
|