UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

20 lines (18 loc) 471 B
import Testeranto from "../../Node"; import { specification } from "./specification"; import { implementation } from "./implementation"; import { testAdapter } from "./adapter"; import { I, O } from "./types"; import { MockGiven } from "./MockGiven"; import { MockThen } from "./MockThen"; import { MockWhen } from "./MockWhen"; export default Testeranto<I, O, {}>( { MockGiven, MockWhen, MockThen, }, specification, implementation, testAdapter );