UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

13 lines (12 loc) 438 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.testAdapter = void 0; exports.testAdapter = { beforeEach: async (subject, initializer) => initializer(), andWhen: async (store, whenCB) => whenCB(store), butThen: async (store, thenCB) => thenCB(store), afterEach: (store) => store, afterAll: () => { }, assertThis: (result) => !!result, beforeAll: async (input) => input, };