UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

11 lines (9 loc) 230 B
import { Ibdd_in_any, Ibdd_out_any, ITestSpecification } from "../CoreTypes"; export const mockTestSpecification = (): ITestSpecification< Ibdd_in_any, Ibdd_out_any > => { return () => { return new BaseSuite(); }; };