File size: 193 Bytes
09fa60b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import "@testing-library/jest-dom";
import { afterEach } from "vitest";
import { cleanup } from "@testing-library/react";

// Cleanup after each test
afterEach(() => {
  cleanup();
});