Доброго времени суток!
Вот такой вот конфиг:
module.exports = function(config){
config.set({
basePath : '../',
preprocessors: {'test/unit/**/*.spec.coffee': ['coffee']},
coffeePreprocessor: {
// options passed to the coffee compiler
options: {
bare: true,
sourceMap: false
},
// transforming the filenames
transformPath: function(path) {
return path.replace(/\.coffee$/, '.js');
}
},
files : [
'_public/www/js/vendor.js',
'bower_components/angular-mocks/angular-mocks.js',
'_public/www/js/app.js',
'test/unit/**/*.coffee'
],
autoWatch : true,
frameworks: ['jasmine'],
browsers : ['Chrome'],
plugins : [
require('../node_modules/karma-coffee-preprocessor'),
require('../node_modules/karma-chrome-launcher'),
require('../node_modules/karma-jasmine'),
]
});
};
Когда делаю inject() в тесте, все сыпится с
ошибкой
Как исправить не врубаюсь