describe('Directive focus', () => { let $scope; let $element; let compile; beforeEach(ngModule('vnCore')); compile = (_element, _childElement) => { inject(($compile, $rootScope) => { $scope = $rootScope.$new(); $element = angular.element(_element); if (_childElement) $element[0].firstChild.focus = jasmine.createSpy(focus); $element[0].focus = jasmine.createSpy('focus'); $element[0].select = jasmine.createSpy('select'); $compile($element)($scope); $scope.$digest(); }); }; it('should call the querySelector function upon the input to redefine it with the expected selector then call focus', () => { let html = `
`; let childHtml = ''; compile(html, childHtml); expect($element[0].firstChild.focus).toHaveBeenCalled(); }); it('should print a warning message on console', () => { let html = `