UNPKG

@thisisagile/easy-test

Version:

Straightforward library for testing microservices built with @thisisagile/easy

12 lines (11 loc) 435 B
/// <reference types="jest" /> import CustomMatcherResult = jest.CustomMatcherResult; import { Uri } from '../utils/Types'; export declare const toMatchRoute: (uri?: import("../utils/Types").Text | undefined, route?: string | import("../utils/Types").Text | undefined) => CustomMatcherResult; declare global { namespace jest { interface Matchers<R, T> { toMatchRoute(route?: Uri | string): R; } } }