veza/apps/web/src/setupTests.ts
2025-12-12 21:34:34 -05:00

8 lines
212 B
TypeScript

import '@testing-library/jest-dom';
import { cleanup } from '@testing-library/react';
import { afterEach } from 'vitest';
// Cleanup after each test case (e.g. clearing jsdom)
afterEach(() => {
cleanup();
});