13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
|
|
import * as matchers from '@testing-library/jest-dom/matchers';
|
||
|
|
import { cleanup } from '@testing-library/svelte';
|
||
|
|
import {
|
||
|
|
afterEach,
|
||
|
|
expect,
|
||
|
|
} from 'vitest';
|
||
|
|
|
||
|
|
expect.extend(matchers);
|
||
|
|
|
||
|
|
afterEach(() => {
|
||
|
|
cleanup();
|
||
|
|
});
|