summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/test-runner/test-runner.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test-runner/test-runner.ts b/src/test-runner/test-runner.ts
index 3a03296..2ccc7de 100644
--- a/src/test-runner/test-runner.ts
+++ b/src/test-runner/test-runner.ts
@@ -22,6 +22,8 @@ import { File } from '../reporters/file'
import { Scheduler } from '../scheduler'
+import { now } from '../util'
+
const adapterMap = {
'actiontec-t3200m': ActiontecT3200M
}
@@ -37,8 +39,6 @@ const reportersMap = {
file: File
}
-const now = () => Date.now() / 1000
-
const mapToObj = (keys: string[], mapObj: Object) =>
keys.map(k => mapObj[k]).filter(k => k != null)