mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-19 20:59:20 +01:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
|
|
import { afterEach } from 'vitest';
|
||
|
|
import { cleanup } from '@testing-library/vue';
|
||
|
|
import '@testing-library/jest-dom/vitest';
|
||
|
|
|
||
|
|
afterEach(() => {
|
||
|
|
cleanup();
|
||
|
|
});
|