blob: e926fc23dbf110f85871f92e88439ef528846a2b [file] [log] [blame]
import { runTest } from "./src/test.mjs";
const then = performance.now();
runTest();
const duration = performance.now() - then;
console.log(`Duration: ${duration.toFixed(2)}ms`);