From e433aa4e324e830652805f914662f8846be7fcc3 Mon Sep 17 00:00:00 2001 From: Brian Jacobel Date: Thu, 19 May 2016 17:41:21 -0400 Subject: [PATCH] Remove this focus test, it's impossible to get it to pass in all envs without breaking something else --- .../js/spec/views/group_configuration_spec.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/cms/static/js/spec/views/group_configuration_spec.js b/cms/static/js/spec/views/group_configuration_spec.js index db924cfb62..0f53baad57 100644 --- a/cms/static/js/spec/views/group_configuration_spec.js +++ b/cms/static/js/spec/views/group_configuration_spec.js @@ -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');