我现在正在用 Jasmine 测试我的 AngularJS 应用程序,它正在通过规范。我试图用 Karma 运行测试,但它失败了。似乎 Karma 看不到 Jasmine 规范中定义的 $scope,但 Jasmine runner 认为它很好。
我的 karma.conf.js:
frameworks = ['jasmine'];
colors = true;
singleRun = true;
files = [
JASMINE,
JASMINE_ADAPTER,
ANGULAR_SCENARIO,
ANGULAR_SCENARIO_ADAPTER,
'lib/jquery-1.9.1.min.js',
'lib/angular.min.js',
'lib/angular-mocks.js',
'lib/jquery.scrollTo.js',
'lib/jquery-ui.min.js',
'lib/calendar.js',
'lib/date.js',
'src/app.js',
'spec/*.spec.js'
];
browsers = [
'PhantomJS',
'Firefox'
];
我的 test.spec.js:
describe('Application startup', function(){
beforeEach(module('app'));
describe('MainCtrl', function(){
var scope, ctrl;
beforeEach(inject(function($rootScope, $controller){
scope = $rootScope.$new();
ctrl = $controller('MainCtrl', {
$scope: scope
});
}));
it("should initialize $scope.testLoad to 42", function(){
expect(scope.testLoad).toBe(42);
});
});
});
我得到的输出:
expect undefined toBe 42
由于 Jasmine 毫无问题地通过了这个,显然它要么是 Karma,要么是我的配置文件。这是怎么回事?