describe('ImpactAnalysisController', function () { 'use strict'; var ctrl, $controller, $rootScope, $scope, tabIds; beforeEach(module('myitsmApp')); beforeEach(inject(function (_$controller_, _$rootScope_, _tabIds_, _configurationModel_) { $controller = _$controller_; tabIds = _tabIds_; $rootScope = _$rootScope_; $scope = $rootScope.$new(); ctrl = $controller('ImpactAnalysisController', { $scope: $scope }); })); it('should exist', function () { expect(ctrl).toBeDefined(); }); });