UNPKG

@thisisagile/easy-test

Version:

Straightforward library for testing microservices built with @thisisagile/easy

10 lines (9 loc) 283 B
import { Query } from '../utils/Types'; export declare const toBeQueriedWith: (query: jest.Mock, expected: Query) => jest.CustomMatcherResult; declare global { namespace jest { interface Matchers<R, T> { toBeQueriedWith(expected: Query): R; } } }