import Testeranto from "testeranto/src/Web"; import { ITestImplementation, ITestSpecification, Ibdd_out } from "testeranto/src/CoreTypes"; import type { IInput } from "./index"; import { I, adapter } from "./dynamic.js"; export default ( testImplementations: ITestImplementation, testSpecifications: ITestSpecification, testInput: IInput ) => { const t = Testeranto( testInput, testSpecifications, testImplementations, adapter(testInput) ); // document.addEventListener("DOMContentLoaded", function () { // const rootElement = document.getElementById("root"); // // if (rootElement) { // // } // }); return t; };