fix failing test due to input polyfill

This commit is contained in:
jelhan 2016-02-16 04:01:17 +01:00
parent 425758e054
commit e906fbd09d

View file

@ -24,7 +24,7 @@ test('time input is toggled by radio switch', function(assert) {
Ember.run(() => {
this.$('.bootstrap-switch-handle-off').click();
});
assert.ok(this.$('.grouped-input input').length === 1);
assert.ok(this.$('.grouped-input input').length > 0);
Ember.run(() => {
this.$('.bootstrap-switch-handle-on').click();
});