Remove this focus test, it's impossible to get it to pass in all envs without breaking something else

This commit is contained in:
Brian Jacobel
2016-05-19 17:41:21 -04:00
parent ad2a9a985d
commit e433aa4e32

View File

@@ -491,21 +491,6 @@ define([
AjaxHelpers.expectNoRequests(requests);
});
it('should have appropriate class names on focus/blur', function (done) {
var groupInput = this.view.$(SELECTORS.inputGroupName).first(),
groupFields = this.view.$(SELECTORS.groupFields);
groupInput.focus();
jasmine.waitUntil(function() {
return groupFields.hasClass('is-focused');
}).then(function () {
groupInput.blur();
jasmine.waitUntil(function() {
return !groupFields.hasClass('is-focused');
}).then(done);
});
});
describe('removes all newly created groups on cancel', function () {
it('if the model has a non-empty groups', function() {
var groups = this.model.get('groups');