summaryrefslogtreecommitdiff
path: root/src/test/setup.ts
blob: 97650fd99bc29715210d3ac812b3ecffcc28a67e (plain)
1
2
3
4
5
6
7
import { afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
import '@testing-library/jest-dom/vitest';

afterEach(() => {
  cleanup();
});