Skip to content

Commit

Permalink
Select: update tests for clearable (#14322)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronfulkerson authored Mar 9, 2019
1 parent dd21a78 commit 6154fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/specs/select.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ describe('Select', () => {
const iconClear = vm.$el.querySelector('.el-input__icon.el-icon-circle-close');
expect(iconClear).to.exist;
iconClear.click();
expect(vm.value).to.equal('');
expect(vm.value).to.equal(null);
done();
}, 100);
});
Expand Down

0 comments on commit 6154fa2

Please sign in to comment.