我正在尝试调试我的单元测试。我正在使用Karma(BTW,它是一个AngularJS项目)。 我已经设法启动了业力服务器,所以当我开始业力时,我得到了右上角带有调试器按钮的页面。当我点击它时,我得到一个白页。在js控制台中,我看到以下错误
未捕获TypeError:对象#没有方法'start'debug.html:35 窗口。业力 .load debug.html:35 (匿名函数)
奇怪的是,在debug.html里面没有start方法:(
window.__karma__ = {
info: function(info) {
if (info.dump && window.console) window.console.log(info.dump);
},
complete: function() {},
store: function() {},
result: window.console ? function(result) {
var msg = result.skipped ? 'SKIPPED' : (result.success ? 'SUCCESS ' : 'FAILED ');
window.console.log(msg + result.suite.join(' ') + ' ' + result.description);
for (var i = 0; i < result.log.length; i++) {
window.console.error(result.log[i]);
}
} : function() {},
loaded: function() {
this.start();
}
};
// All served files with the latest timestamps
window.__karma__.files = {
};
在该文件窗口的正文中。业力 .loaded();叫做。
任何可能出错的建议?
答案 0 :(得分:3)
问题是window.__karma__.files
为空。验证您的配置文件是否正确,以及如果它未命名为karma.conf.js,则使用karma start my.conf.js
运行它。