@wdio/jasmine-framework
Version:
A WebdriverIO plugin. Adapter for Jasmine testing framework.
13 lines • 354 B
TypeScript
interface JestExpectationResult {
pass: boolean;
message: () => string;
}
export declare const jestResultToJasmine: (result: JestExpectationResult | Promise<JestExpectationResult>, isNot: boolean) => {
pass: boolean;
message: string;
} | Promise<{
pass: boolean;
message: string;
}>;
export {};
//# sourceMappingURL=utils.d.ts.map