UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

14 lines (13 loc) 404 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MockThen = void 0; const abstractBase_1 = require("../abstractBase"); class MockThen extends abstractBase_1.BaseThen { constructor(name, thenCB) { super(name, thenCB); } async butThen(store, thenCB, testResourceConfiguration, pm) { return thenCB(store); } } exports.MockThen = MockThen;