SmartIT_Extensions/BMC/smart-it-full/test/app/change/edit-dates-controller.spec.js

25 lines
533 B
JavaScript

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