Запуск угловых тестов с кармой и жасмином: ошибка minErr
Я пытаюсь написать базовый тест для углового контроллера. Я использую каркас Jasmine и карму в качестве тестового бегуна. Мой тест не проходит со следующей ошибкой:
Firefox 35.0.0 (Linux) MessageCtrl should get the correct message FAILED
minErr/<@/home/jenselme/tests/javascript/angular/unit_tests/angular.js:78:12
loadModules/<@/home/jenselme/tests/javascript/angular/unit_tests/angular.js:3906:15
forEach@/home/jenselme/tests/javascript/angular/unit_tests/angular.js:325:9
loadModules@/home/jenselme/tests/javascript/angular/unit_tests/angular.js:3872:5
createInjector@/home/jenselme/tests/javascript/angular/unit_tests/angular.js:3812:11
workFn@/home/jenselme/tests/javascript/angular/unit_tests/angular-mocks.js:2172:44
env.executeFiltered@/home/jenselme/.npm-packages/lib/node_modules/karma-jasmine/lib/boot.js:126:7
createStartFn/<@/home/jenselme/.npm-packages/lib/node_modules/karma-jasmine/lib/adapter.js:171:5
[2]</Karma/this.loaded@http://localhost:9877/karma.js:185:7
@http://localhost:9877/context.html:47:5
TypeError: $scope is undefined in /home/jenselme/tests/javascript/angular/unit_tests/MessageCtrl.spec.js (line 11)
@/home/jenselme/tests/javascript/angular/unit_tests/MessageCtrl.spec.js:11:5
env.executeFiltered@/home/jenselme/.npm-packages/lib/node_modules/karma-jasmine/lib/boot.js:126:7
createStartFn/<@/home/jenselme/.npm-packages/lib/node_modules/karma-jasmine/lib/adapter.js:171:5
[2]</Karma/this.loaded@http://localhost:9877/karma.js:185:7
@http://localhost:9877/context.html:47:5
Вот мой MessageCtrl.js:
var app = angular.module("lastLine", []);
app.controller('MessageCtrl', ['$scope', function($scope) {
$scope.getMessage = function(name) {
return 'Hello ' + name;
};
}]);
И мой MessageCtrl.spec.js:
describe('MessageCtrl', function() {
var $scope;
beforeEach(module('MessageCtrl'));
beforeEach(inject(function($rootScope, $controller) {
$scope = $rootScope.$new();
$controller('MessageCtrl', {
$scope: $scope
});
}));
it('should get the correct message', function() {
var message = $scope.getMessage('Cedric');
expect(message).toBe('Hello Cedric');
})
});
Я понятия не имею, откуда это может прийти. Может кто-нибудь мне помочь?
РЕДАКТИРОВАТЬ 1: исправить код MessageCtrl.spec.js
1 ответ
Решение
Понял. Код в MessageCtrl.spec.js был неверным. Линия beforeEach(module('MessageCtrl'));
должно быть beforeEach(module('lastLine'));