@thisisagile/easy-test
Version:
Straightforward library for testing microservices built with @thisisagile/easy
17 lines (16 loc) • 469 B
TypeScript
/// <reference types="jest" />
import CustomMatcherResult = jest.CustomMatcherResult;
export declare const MatchesExactJson: {
SubjectUndefined: string;
SubsetUndefined: string;
DoesNotMatch: string;
Yes: string;
};
export declare const toMatchExactJson: (value?: unknown, json?: unknown) => CustomMatcherResult;
declare global {
namespace jest {
interface Matchers<R, T> {
toMatchExactJson(json?: unknown): R;
}
}
}