File size: 256 Bytes
0ad74ed
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import type { TestingLibraryMatchers } from "@testing-library/jest-dom/matchers";
import "@testing-library/jest-dom/vitest";

declare module "vitest" {
	interface Assertion<T = any>
		extends jest.Matchers<void, T>,
			TestingLibraryMatchers<T, void> {}
}