UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

20 lines (15 loc) 438 B
import Testeranto from "../../Node"; import { implementation } from "./implementation"; import { specification } from "./specification"; import { testAdapter } from "./adapter"; import { I, O } from "./types"; import { butThenProxy, IProxy } from "../pmProxy"; export type ITestProxies = { butThenProxy: IProxy }; export default Testeranto<I, O, object>( { butThenProxy, }, specification, implementation, testAdapter );