Files
lucide/packages/vue/tests/setupVitest.js

8 lines
163 B
JavaScript
Raw Permalink Normal View History

2025-07-04 17:05:14 +02:00
import { afterEach } from 'vitest';
import { cleanup } from '@testing-library/vue';
2025-06-18 15:39:13 +02:00
import '@testing-library/jest-dom/vitest';
2025-07-04 16:56:27 +02:00
afterEach(() => {
cleanup();
});