UNPKG

@thisisagile/easy-test

Version:

Straightforward library for testing microservices built with @thisisagile/easy

11 lines (10 loc) 313 B
/// <reference types="jest" /> import CustomMatcherResult = jest.CustomMatcherResult; export declare const toMatchText: (value?: unknown, text?: unknown) => CustomMatcherResult; declare global { namespace jest { interface Matchers<R, T> { toMatchText(text?: unknown): R; } } }