UNPKG

@thisisagile/easy-test

Version:

Straightforward library for testing microservices built with @thisisagile/easy

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