mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-19 19:29:20 +01:00
* Remove old vue 2 package * Add @lucide/vue package * Remove old vue 2 doc * Update docs * Adjust export template * Adjust vue package! * Fix tests * Format code * Update packages/vue/src/Icon.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Adjust vue package in docs * Update deadlinks --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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();
|
|
});
|