/* eslint-disable @typescript-eslint/no-empty-object-type */ import Testeranto from "Testeranto/src/Pure"; import { ITestAdapter, ITestImplementation, ITestSpecification, Ibdd_out_any } from "Testeranto/src/CoreTypes"; import { testInterface as baseInterface, I } from "./index.js"; export default ( testImplementations: ITestImplementation, testSpecifications: ITestSpecification, testInput: I["iinput"], testInterface: ITestAdapter = baseInterface ) => { return Testeranto( testInput, testSpecifications, testImplementations, testInterface ); };