mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 16:47:43 +01:00
* Ignore linting for examples in docs * Formatting JSX single attribute per line * Separte `format` and `lint:format` in package.json * Bump prettier version * Run format
12 lines
307 B
JavaScript
12 lines
307 B
JavaScript
import '@testing-library/jest-dom';
|
|
import { expect, afterEach } from 'vitest';
|
|
import { cleanup } from '@testing-library/react';
|
|
import '@testing-library/jest-dom/vitest';
|
|
import htmlSerializer from 'jest-serializer-html';
|
|
|
|
expect.addSnapshotSerializer(htmlSerializer);
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|