now testing properly

This commit is contained in:
2017-03-26 22:01:33 +02:00
parent c54644949e
commit 638c1a8c8c
8 changed files with 1636 additions and 66 deletions

View File

@ -25,7 +25,7 @@ export let stop = (): Promise<number> => {
let endTime = Date.now()
let earlyExecutionTime: number = (endTime - startTime)
let earlyExecutionTimeString: string = (earlyExecutionTime / 1000).toString()
console.log(`... finished loading within ${beautycolor.coloredString(earlyExecutionTimeString, 'blue')}`)
console.log(`OK! -> finished loading within ${beautycolor.coloredString(earlyExecutionTimeString, 'blue')}`)
done.resolve(earlyExecutionTime)
return done.promise
}