UNPKG

@testing-library/jest-dom

Version:

Custom jest matchers to test the state of the DOM

12 lines (10 loc) 266 B
import {type expect} from 'bun:test' import {type TestingLibraryMatchers} from './matchers' export {} declare module 'bun:test' { interface Matchers<T = any> extends TestingLibraryMatchers< ReturnType<typeof expect.stringContaining>, T > {} }