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

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