test(): update checkbox/select/toggle tests

This commit is contained in:
Adam Bradley
2016-02-14 14:42:42 -06:00
parent 78b1a0cae9
commit 1e0df9249e
9 changed files with 42 additions and 14 deletions

View File

@@ -24,7 +24,7 @@ class E2EApp {
constructor() {
this.fruitsForm = new ControlGroup({
"appleCtrl": new Control(),
"appleCtrl": new Control(false),
"bananaCtrl": new Control(true),
"cherryCtrl": new Control(false),
"grapeCtrl": new Control(true)
@@ -33,8 +33,8 @@ class E2EApp {
this.grapeChecked = true;
this.grapeDisabled = true;
this.kiwiModel = false;
this.strawberryModel = true;
this.kiwiModel = true;
this.strawberryModel = false;
}
toggleGrapeChecked() {