summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2018-11-18 23:56:11 -0800
committerNick Van Doorn <vandoorn.nick@gmail.com>2018-11-18 23:56:11 -0800
commit4767efb0dc2771a865c25cf96d970f0be54dfab6 (patch)
treefedebb590ab53bd48be7962703c320bbfd3e2776
parentc4fa5bdae3b68659c1cc25d8860fa2c4833b7921 (diff)
Fix defaults
-rw-r--r--src/models/config.model.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/models/config.model.ts b/src/models/config.model.ts
index 5f294af..7ae202b 100644
--- a/src/models/config.model.ts
+++ b/src/models/config.model.ts
@@ -12,8 +12,8 @@ export interface Config {
// 0 actually represents 0 clients.
maxClientsForTest: number
testPeriod: number // how many seconds between each test
- adapter: string // default to "actiontec-ts3200m"
- testServices: string[] // default to ["fast"]
+ adapter: string // default to "actiontec-t3200m"
+ testServices: string[] // default to ["fast", "ookla"]
serviceSpec: string // default to "telus-victoria-75"
- reporters: string[] // default to "firebase"
+ reporters: string[] // default to ["firebase"]
}