@thisisagile/easy-test
Version:
Straightforward library for testing microservices built with @thisisagile/easy
15 lines (14 loc) • 377 B
TypeScript
export declare const MatchesJson: {
SubjectUndefined: string;
SubsetUndefined: string;
DoesNotMatch: string;
Yes: string;
};
export declare const toMatchJson: (value?: unknown, subset?: unknown) => jest.CustomMatcherResult;
declare global {
namespace jest {
interface Matchers<R, T> {
toMatchJson(subset?: unknown): R;
}
}
}