作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
尝试使用 gulp 运行 karma 以运行测试,但遵循以下示例:https://github.com/karma-runner/gulp-karma
我的 gulp 文件:
var gulp = require('gulp');
var Server = require('karma').Server;
/**
* Run test once and exit
*/
gulp.task('test', function (done) {
new Server({
configFile: __dirname + '/karma.conf.js',
singleRun: true
}, done).start();
});
/**
* Watch for file changes and re-run tests on each change
*/
gulp.task('tdd', function (done) {
new Server({
configFile: __dirname + '/karma.conf.js'
}, done).start();
});
gulp.task('default', ['tdd']);
在我运行:gulp test 之后我得到了错误:
TypeError: Server is not a function at Gulp.<anonymous>
有什么可能出错的建议吗?
最佳答案
您安装的是哪个版本的 karma?
API 已从 0.12
更改至 0.13
您展示的示例是 0.13
的示例。
以前的 API 如下:
var server = require('karma').server;
//... more code
server.start( { .... } , function(exitCode){
// ...
});
关于javascript - gulp karma 测试 TypeError : Server is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33426749/
我是一名优秀的程序员,十分优秀!