我一直在学习AngularJS,现在是开始编写测试的时候了,但我遇到了第一道障碍。
我的业力配置文件是:
module.exports = function(config) {
config.set({
basePath: '..',
// frameworks to use
frameworks: ['mocha'],
// list of files / patterns to load in the browser
files: [
'node_modules/chai/chai.js',
'public/js/libs/jquery-1.9.1.js',
'public/js/libs/angular.js',
'test/libs/angular-mocks.js',
'public/js/**/*.js',
'test/angular/**/*.js'
],
exclude: [],
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_DEBUG,
autoWatch: true,
browsers: ['Chrome'],
captureTimeout: 60000,
singleRun: false
});
};
我声明了一个过滤器:
angular.module('timeMachine.filters',[])
.filter('hours', function() {
return function(input) {
return input == 1
? '1 hour'
: input + ' hours';
}
});
测试:
var should = chai.should();
describe("The hours filter", function() {
beforeEach(function() {
angular.module('timeMachine.filters');
});
it('should be able to test', function(){
true.should.equal(true);
});
it('should be able to inject an hours filter', inject(function($filter) {
var hours = $filter('hours');
expect(hours).not.to.equal(null);
}));
});
但是,第二次测试失败并显示以下消息:
[$ injector:unpr]未知提供商:hoursFilterProvider< - hoursFilter
在运行Angular应用程序的上下文中,此过滤器可以正常工作。
我认为我因缺乏经验而缺少某些东西,任何帮助都会很棒!