UNPKG

@the-standard/jest-extensions

Version:

Extensions for jest that provide expect extensions for the-standard libraries

11 lines (10 loc) 293 B
import { Exception } from '@the-standard/exceptions'; declare global { namespace jest { interface Matchers<R> { toThrowException(expectedException: Exception): R; toThrowExceptionAsync(expectedException: Exception): Promise<R>; } } } export {};