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