UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

10 lines (9 loc) 256 B
import { BaseThen } from "../abstractBase"; export class MockThen extends BaseThen { constructor(name, thenCB) { super(name, thenCB); } async butThen(store, thenCB, testResourceConfiguration, pm) { return thenCB(store); } }