用ajax帖子进行DOH测试

时间:2016-10-06 16:23:33

标签: javascript dojo doh

我在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的工作电话。 我做错了什么?

0 个答案:

没有答案