UNPKG

test-executor

Version:

Executes test scripts in the specified dirs.

19 lines (14 loc) 310 B
'use strict' class ExecutionTime { constructor (startTime) { this.startTime = startTime || new Date().getTime() this.delta = 0 } update () { this.delta = new Date().getTime() - this.startTime } log (pattern) { console.log(pattern, this.delta) } } module.exports = ExecutionTime