testeranto
Version:
the AI powered BDD test framework for typescript projects
20 lines (16 loc) • 515 B
text/typescript
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, {}>(
// because of the nature of testeranto, we must add all the testable items here
{
butThenProxy,
},
specification,
implementation,
testAdapter
);