9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
|
|
import '@testing-library/jest-dom/vitest';
|
||
|
|
import type { TestingLibraryMatchers } from '@testing-library/jest-dom/matchers';
|
||
|
|
|
||
|
|
declare global {
|
||
|
|
namespace Vi {
|
||
|
|
interface Matchers<R = any> extends TestingLibraryMatchers<R, void> {}
|
||
|
|
}
|
||
|
|
}
|