UNPKG

@testing-library/jest-dom

Version:

Custom jest matchers to test the state of the DOM

14 lines (11 loc) 282 B
/// <reference types="jest" /> import {type TestingLibraryMatchers} from './matchers' declare global { namespace jest { interface Matchers<R = void, T = {}> extends TestingLibraryMatchers< ReturnType<typeof expect.stringContaining>, R > {} } }