⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit_test_js.jst.txt

📁 刚开始学习看的
💻 TXT
字号:
<%updatersName%>[<%id%>]=new Object();
<%updatersName%>[<%id%>].gotResult=function(ret){
	if (JSON.stringify(ret)==JSON.stringify(tests[<%id%>].data)) {
		$('resultDIV_'+<%id%>).innerHTML= "<img src='images/check.gif' />"+ JSON.stringify(ret);
	}else{
		$('resultDIV_'+<%id%>).innerHTML= "<img src='images/error.gif' />"+ JSON.stringify(ret);
		$('progress').style.backgroundColor='brown';
	}
	$('progress').style.width = (++<%counterName%>/tests.length*100)+'%';
};

<%updatersName%>[<%id%>].gotError=function(err){
	if (err!=null) {
		$('progress').style.backgroundColor='red';
		$('resultDIV_'+<%id%>).innerHTML= "<img src='images/error.gif' />"+ JSON.stringify(ret);
		$('progress').style.width = (++<%counterName%>/tests.length*100)+'%';
	}
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -