summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2018-11-18 23:54:53 -0800
committerNick Van Doorn <vandoorn.nick@gmail.com>2018-11-18 23:54:53 -0800
commitb000f0411197aca50c2c88c2270592369c3f6402 (patch)
treeee993e582d6ca8b0c3aa0587be2727d8ef09725a
parent268a443c96b21079e93196119b6272d833cff982 (diff)
Fix adapter mapping
-rw-r--r--src/test-runner/test-runner.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test-runner/test-runner.ts b/src/test-runner/test-runner.ts
index eda84f3..b341082 100644
--- a/src/test-runner/test-runner.ts
+++ b/src/test-runner/test-runner.ts
@@ -8,7 +8,7 @@ import { Context } from '../models/context.model'
import { ExecState } from '../models/exec-state.model'
// Physical hardware adapters (a standard Telus one for now)
-import { ActiontecTS3200M } from '../adapters/actiontec-t3200m'
+import { ActiontecT3200M } from '../adapters/actiontec-t3200m'
// Test providers
import { Ookla } from '../test-services/ookla'
@@ -20,7 +20,7 @@ import { Firebase } from '../reporters/firebase'
import { Scheduler } from '../scheduler'
const adapterMap = {
- 'actiontec-ts3200m': ActiontecTS3200M
+ 'actiontec-t3200m': ActiontecT3200M
}
const testServiceMap = {
@@ -85,6 +85,7 @@ export const testEachService = async (
): Promise<Report[]> => {
let reports = []
for (let service of services) {
+ ctx.logger(`Testing ${service.name}`)
const report = await testService(adapter, service, ctx)
reports.push(report)
}