我在 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
这是来自我的 web 应用程序的工作调用。我做错了什么?