Files

9 lines
192 B
TypeScript
Raw Permalink Normal View History

2025-03-16 00:12:15 +07:00
import { afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
import React from 'react';
import '@testing-library/jest-dom/vitest';
afterEach(() => {
cleanup();
});