UNPKG

@thisisagile/easy-test

Version:

Straightforward library for testing microservices built with @thisisagile/easy

10 lines (9 loc) 278 B
import { Uri } from '../utils/Types'; export declare const toMatchRoute: (uri?: Uri, route?: Uri | string) => jest.CustomMatcherResult; declare global { namespace jest { interface Matchers<R, T> { toMatchRoute(route?: Uri | string): R; } } }