我在DOH进行了这项测试:
name: "refreshNotification_NotNullData", //refreshNotification action tesztje, nem adhat vissza null-t
runTest: function(){
require(["webnyk/common/components/ajaxAction"], function(ajaxAction){
ajaxAction.post({
actionName: "refreshNotification",
callback: function(_response){
doh.assertNotEqual(null, _response.data);
}
});
});
}
当我运行测试时,它会出现以下错误:
Error: token is not defined
ERROR IN:
function (){
require(["webnyk/common/components/ajaxAction"], function(ajaxAction){
ajaxAction.post({
actionName: "refreshNotification",
callback: function(_response){
doh.assertNotEqual(null, _response.data);
}
});
});
}
FAILED test: refreshNotification_NotNullData 17 ms
这是来自我的webapp的工作电话。 我做错了什么?