7 lines
122 B
TypeScript
7 lines
122 B
TypeScript
import { afterEach } from 'vitest';
|
|
import { cleanup } from '@testing-library/svelte';
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|