我想在WebStorm 7中使用karma运行mySpec.js。当我运行karma时,karma服务器在我的浏览器上启动但在WebStorm中我遇到了这个错误:
这是我得到的错误
ReferenceError:未定义模块 在null。 (C:/Users/Babar/Desktop/angular/test/basic/mySpec.js:2:16) 在C:/Users/Babar/Desktop/angular/test/basic/mySpec.js:1:1处理完成退出代码0
这是我的配置文件:
// Karma configuration
// Generated on Thu Nov 21 2013 03:05:08 GMT-0800 (Pacific Standard Time)
module.exports = function
(config) {
config.set({
// base path, that will be used to resolve files and exclude
basePath: '',
// frameworks to use
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'test/basic/mySpec.js'
],
// list of files to exclude
exclude: [
],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
reporters: ['progress'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera (has to be installed with `npm install karma-opera-launcher`)
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
// - PhantomJS
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
browsers: ['Chrome'],
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 60000,
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false
});
};
这是我的mySpec.js:
describe('filter', function(){
beforeEach(module('Babar', []));
describe("reverse", function(){
it("should reverse a string",inject(function(reverseFilter){
expect(reverseFilter("ABCD")).toEqual("DCBA");
}))
})
})
请告诉我该怎么办?
答案 0 :(得分:8)
Karma需要提取您正在使用的所有文件。它使用其配置中的files
集合来配置要引入的文件:
所以这需要扩展:
// list of files / patterns to load in the browser
files: [
'test/basic/mySpec.js'
],
对于这样的事情:
// list of files / patterns to load in the browser
files: [
'src/lib/angular/angular.js',
'src/lib/angular-mocks/angular-mocks.js',
'src/js/**/*.js',
'test/**/*.js'
],
该错误表示在Babar
列表中配置的某个文件中找不到定义模块files
的文件。