SmartIT_Extensions/BMC/smart-it-full/test/app/change/impact-analysis-controller....

27 lines
618 B
JavaScript

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();
});
});