6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
|
|
import '@testing-library/jest-dom/vitest';
|
||
|
|
import { cleanup } from '@testing-library/react';
|
||
|
|
import { afterEach } from 'vitest';
|
||
|
|
|
||
|
|
afterEach(() => cleanup());
|