mirror of
https://github.com/lucide-icons/lucide.git
synced 2026-08-29 10:28:26 +02:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
import { expect, afterEach } from 'vitest';
|
|
import { cleanup } from '@solidjs/testing-library';
|
|
import '@testing-library/jest-dom/vitest';
|
|
import htmlSerializer from 'jest-serializer-html';
|
|
|
|
expect.addSnapshotSerializer(htmlSerializer);
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|