Here i am attaching the coverage report screen shot这是我的代码,但是在单元测试和查看coverage报告时,它没有覆盖函数和函数的内部。请给我找到解决方法。
this.getSingleRig = function(name,singleRigDetails){
var rigServiceObj = new rigService();
rigServiceObj.getSingleRigDetails(name,function(res){
singleRigDetails(constants.SUCCESS,res,200);
},function(){
singleRigDetails(constants.ERROR,constants.ERROR_MSG,100);
});
};