@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
22 lines (21 loc) • 850 B
TypeScript
import type { CompereOptions } from "./html-comparer";
export declare function toMatchFromHtml(markup: string, expected: string, comparerOptions?: CompereOptions): {
pass: boolean;
message: any;
};
export declare function toMatchSpec(markup: string, spec: any, specOptions?: any, comparerOptions?: CompereOptions): {
pass: boolean;
message: any;
};
export declare function toMatchFromHtmlWithPassed(markup: string, passed: number, expected: string, comparerOptions?: CompereOptions): {
pass: boolean;
message: any;
};
export declare function toMatchSpecWithPassed(markup: string, passed: number, spec: any, specOptions?: any, comparerOptions?: CompereOptions): {
pass: boolean;
message: any;
};
export declare function generateReport({ comparerResult, passed }: {
comparerResult: any;
passed: any;
}): string;