UNPKG

@testing-library/jest-dom

Version:

Custom jest matchers to test the state of the DOM

12 lines (10 loc) 305 B
import {type expect} from '@jest/globals' import {type TestingLibraryMatchers} from './matchers' export {} declare module '@jest/expect' { export interface Matchers<R extends void | Promise<void>> extends TestingLibraryMatchers< ReturnType<typeof expect.stringContaining>, R > {} }