testeranto
Version:
the AI powered BDD test framework for typescript projects
10 lines (9 loc) • 578 B
TypeScript
import { Ibdd_in_any } from "../../CoreTypes";
import { BaseGiven } from "../BaseGiven";
import { BaseThen } from "../BaseThen";
import { BaseWhen } from "../BaseWhen";
export declare class MockGiven<I extends Ibdd_in_any> extends BaseGiven<I> {
constructor(name: string, features: string[], whens: BaseWhen<I>[], thens: BaseThen<I>[], givenCB: I["given"], initialValues: any);
givenThat(subject: I["isubject"], testResourceConfiguration: any, artifactory: any, givenCB: I["given"], initialValues: any, pm: any): Promise<I["istore"]>;
uberCatcher(e: Error): void;
}