Skip to content

Commit

Permalink
Fix regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
artf committed Sep 21, 2017
1 parent a45490e commit 834f464
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/specs/style_manager/view/PropertyColorView.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ module.exports = {
});

it('Update model on input change', () => {
view.$input.val(propValue).trigger('change');
view.getInputEl().value = propValue;
view.inputValueChanged();
expect(view.model.get('value')).toEqual(propValue);
});

Expand Down

0 comments on commit 834f464

Please sign in to comment.