【发布时间】:2017-03-08 17:11:30
【问题描述】:
y 在我的 Fuse 应用程序 (withinpixels[dot]com/themes/fuse) 中设置 karma+jasmine 测试,基于 AngularJS+Gulp 项目,以及下一个配置文件:
karma.conf.js:
// Karma configuration
// Generated on Tue Oct 25 2016 11:50:38 GMT+0200 (CEST)
module.exports = function (config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath : '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks : ['jasmine'],
// list of files / patterns to load in the browser
files : [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'src/app/**/*.json',
'src/app/**/*.js',
'test/*.js'
],
// list of files to exclude
exclude : [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors : {
'src/app/**/*.json' : ['json_fixtures'],
'src/app/**/*.js' : ['coverage']
},
coverageReporter : {
type : 'text-summary',
dir : 'coverage/'
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters : ['progress', 'coverage'],
// 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 : true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers : ['PhantomJS'], //['Chrome'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun : true,
plugins: [
'karma-jasmine',
'karma-coverage',
'karma-phantomjs-launcher',
'karma-json-fixtures-preprocessor'
],
// Concurrency level
// how many browser should be started simultaneous
concurrency : Infinity
});
};
test/test.js:
describe("Index/Module", function () {
var rootScope, scope, ctrl;
beforeEach(angular.mock.module('fuse'));
beforeEach(inject(function($rootScope, $controller) {
rootScope = $rootScope;
scope = rootScope.$new();
ctrl = $controller("IndexController", {
$scope: scope
});
}));
it("exists", function() {
expect(ctrl).not.toBeUndefined();
});
});
当我执行测试时,我得到下一条错误消息:
[PhantomJS 2.1.1 (Mac OS X 0.0.0)] 错误: 错误:[$injector:nomod] 模块“app.core”不可用!您要么拼错了模块名称,要么忘记加载它。如果注册模块,请确保将依赖项指定为第二个参数。 http://errors.angularjs.org/1.5.7/$injector/nomod?p0=app.core 在http://localhost:9876/base/bower_components/angular/angular.js?628a6cd3a27859d17a9a4ee87e62c9b6996ba4cb:2077
发生未捕获的错误。 可以在“输出”窗口中验证完整输出。
¿有什么想法吗?
【问题讨论】:
标签: angularjs testing gulp karma-runner karma-jasmine