Выполнение ниже unit test дает "Ошибка: [$ injector: unpr] Неизвестный поставщик: $stateProvider < - $state". Я добавил файл angular -ui-router.min.js в файл кармы.
describe("Unit tests", function() {
var $rootScope, $injector, $state;
console.log("hello");
beforeEach(inject(function(_$rootScope_, _$state_, _$injector_, $templateCache) {
console.log("hello1");
$rootScope = _$rootScope_;
$injector = _$injector_;
$state = _$state_;
}));
describe("states", function() {
it("verify state configuration", function() {
var config = $state.get("DRaaS");
console.log(config, "cc");
});
});
});