我遇到了一个问题,如果测试是在覆盖范围内运行的 - 测试运行正常,没有问题。但是,一旦我打开报道,我就会收到以下错误:
ReferenceError:找不到变量:PushNotificationView
测试文件
/// <reference path="PushNotificationPresenter.js" />
describe("Push-Notification-Presenter-Tests", function() {
var view = new PushNotificationView();
/* Some tests go here */
});
PushNotificationView
function PushNotificationView() {
return {
/* Some functions */
}
}
有什么想法吗?
答案 0 :(得分:0)
当我在本地测试时,问题是你的评论并不接近。如果我更新到以下内容它工作正常:
<强> PushNotificationView 强>
function PushNotificationView() {
return {
/* Some functions */
}
}