diff --git a/src/core_plugins/kibana/public/visualize/editor/__tests__/draggable.js b/src/core_plugins/kibana/public/visualize/editor/__tests__/draggable.js index d8673d30a42e4..33ac5281020fc 100644 --- a/src/core_plugins/kibana/public/visualize/editor/__tests__/draggable.js +++ b/src/core_plugins/kibana/public/visualize/editor/__tests__/draggable.js @@ -7,7 +7,7 @@ let init; let $rootScope; let $compile; -describe('draggable_* directives', function () { +describe(`draggable_* directives`, function () { beforeEach(ngMock.module('kibana')); beforeEach(ngMock.inject(function ($injector) { @@ -35,36 +35,36 @@ describe('draggable_* directives', function () { }; })); - describe('draggable_container directive', function () { - it('should expose the drake', function () { + describe(`draggable_container directive`, function () { + it(`should expose the drake`, function () { const { $scope } = init(); expect($scope.drake).to.be.an(Object); }); - it('should expose the controller', function () { + it(`should expose the controller`, function () { const { $scope } = init(); expect($scope.draggableContainerCtrl).to.be.an(Object); }); - it('should pull item list from directive attribute', function () { + it(`should pull item list from directive attribute`, function () { const { $scope, $parentScope } = init(); expect($scope.draggableContainerCtrl.getList()).to.eql($parentScope.items); }); - it('should not be able to move extraneous DOM elements', function () { + it(`should not be able to move extraneous DOM elements`, function () { const bare = angular.element(`