Adjust formatting

This commit is contained in:
Blade Barringer
2015-08-31 20:35:23 -05:00
parent f4ca8bb78d
commit 1d8b10dc99

View File

@@ -15,8 +15,7 @@ describe('focusElement Directive', function() {
scope.$digest();
}));
it('places focus on the element it is applied to when the expression it binds to evaluates to true',
inject(function($timeout) {
it('places focus on the element it is applied to when the expression it binds to evaluates to true', inject(function($timeout) {
var focusSpy = sandbox.spy();
elementToFocus.appendTo(document.body);
@@ -27,7 +26,5 @@ describe('focusElement Directive', function() {
$timeout.flush();
expect(document.activeElement.dataset.focusElement).to.eql("focusThisLink");
expect(focusSpy).to.have.been.called;
})
);
}));
});