testeranto
Version:
the AI powered BDD test framework for typescript projects
21 lines (19 loc) • 532 B
text/typescript
/* eslint-disable @typescript-eslint/no-empty-object-type */
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
);