main
ts 8 lines 175 Bytes
Raw
1 import { cleanup } from "@testing-library/react";
2 import { afterEach, vi } from "vitest";
3
4 afterEach(() => {
5 cleanup();
6 vi.restoreAllMocks();
7 vi.unstubAllGlobals();
8 });