UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

7 lines (6 loc) 368 B
import { BaseWhen } from "../abstractBase"; import { Ibdd_in_any } from "../../CoreTypes"; export declare class MockWhen<I extends Ibdd_in_any> extends BaseWhen<I> { constructor(name: string, whenCB: (x: I["iselection"]) => I["then"]); andWhen(store: I["istore"], whenCB: (x: I["iselection"]) => I["then"], testResource: any, pm: any): Promise<I["istore"]>; }