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