Spaces:
Paused
Paused
File size: 213 Bytes
5a81b95 | 1 2 3 4 5 6 7 8 9 | import { afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
import '@testing-library/jest-dom';
// Cleanup after each test case (e.g., clearing jsdom)
afterEach(() => {
cleanup();
});
|