Skip to content

Commit

Permalink
question.cssClasses, vue implementation
Browse files Browse the repository at this point in the history
  --  removed question css from test
  • Loading branch information
dmitry-kurmanov committed Jun 16, 2017
1 parent 7ac9d85 commit e7064f1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/vue/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ QUnit.test("Survey.Checkbox initialization and values", (assert) => {

const vm = new Checkbox;
vm.question = question;
vm.css = survey.css;
vm.$mount();

assert.deepEqual(question.value, ["second item"]);
Expand All @@ -67,7 +66,6 @@ QUnit.test("Survey.Checkbox question changed", (assert) => {

const vm = new Checkbox;
vm.question = question1;
vm.css = survey.css;
vm.$mount();

assert.deepEqual(vm.value, ["second item"]);
Expand All @@ -82,7 +80,6 @@ QUnit.test("Survey.Checkbox question value in model has been changed", function

const vm = new Checkbox;
vm.question = question;
vm.css = survey.css;
vm.$mount();

assert.deepEqual(vm.value, ["second item"]);
Expand Down

0 comments on commit e7064f1

Please sign in to comment.