mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-31 03:37:03 +08:00
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
/// <reference types="vite/client" />
|
|
import type { TestingLibraryMatchers } from "@testing-library/jest-dom/matchers";
|
|
|
|
declare global {
|
|
namespace jest {
|
|
interface Matchers<R = void>
|
|
extends TestingLibraryMatchers<typeof expect.stringContaining, R> {}
|
|
}
|
|
} |