import {getAllTsFiles} from "./util"; import * as tape from "tape"; const start = new Date().getTime(); const paths = getAllTsFiles(__dirname + "/input"); for (let i=0; i { const end = new Date().getTime(); const timeTaken = end-start; console.log("Run-time tests completed in", timeTaken/1000.0, "s"); t.end(); });