我正在为我的Angularjs应用程序编写Jasmine测试。 我使用karma init生成了karma.conf.js,但是当我运行karma start时,我得到这样的警告:
WARN [web-server]: 404: /bower_components/angular/angular.js
WARN [web-server]: 404: /js/app.js
karma.conf.js位于我的app文件夹中,也就是bower_components文件夹的位置。
我想也许可能是因为我使用这种方法的本地测试服务器:https://github.com/mhevery/angular-node-socketio
(我已经能够在没有测试服务器的其他项目中设置这样的测试)
有人可以指出我在正确的方向吗?
更新
我的karma.conf.js看起来像这样:
module.exports = function(config) {
config.set({
basePath: '.',
frameworks: ['jasmine', 'requirejs'],
files: [
'tests/*.js',
'js/*.js',
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'bower_components/angular-resource/angular-resource.js',
'bower_components/d3/d3.js'
],
exclude: [],
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
captureTimeout: 60000,
singleRun: false
});
};
这是我的目录结构:
答案 0 :(得分:1)
现在您已经修复了基本路径(从'。'到'',请参阅上面的问题评论),您应该更改karma.conf.js中加载的文件的顺序:
module.exports = function(config) {
config.set({
basePath: '.',
frameworks: ['jasmine', 'requirejs'],
files: [
//load angular.js first
//(unless if you use jQuery which must be first if I remember well)
'bower_components/angular/angular.js',
//Then angular-modules
'bower_components/angular-resource/angular-resource.js',
'bower_components/angular-mocks/angular-mocks.js',
//Other libs
'bower_components/d3/d3.js',
//Your app scripts
'js/*.js',
//And your specs
'tests/*.js'
],
exclude: [],
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
captureTimeout: 60000,
singleRun: false
});
};
您可以在此处找到更多信息:http://karma-runner.github.io/0.10/config/files.html
订购
- 模式的顺序决定了浏览器中包含它们的文件的顺序。
- 匹配单个模式的多个文件按字母顺序排序。
- 每个文件只包含一次。如果多个模式匹配同一个文件,则将其包含在内,就像它只匹配第一个模式一样。
醇>
答案 1 :(得分:1)
您的问题可能就是您正在加载文件的订单。
您可能需要将订单更改为:
files: [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'bower_components/angular-resource/angular-resource.js',
'bower_components/d3/d3.js',
'js/*.js',
'tests/*.js'
],