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