我想在茉莉花记者生成的报告中在屏幕的上角添加一个徽标? 如何自定义报告?
答案 0 :(得分:3)
您可以修改构建HTML的index.js
(位于here),其中printResults(suite)
方法(位于here)。
我尝试在测试列表上方添加一个图像,看起来不错。
function printResults(suite) {
//Output generation starts here. Header is constructed above
var output = '';
if (suite.isPrinted || !hasValidSpecs(suite)) {
return '';
}
suite.isPrinted = true;
// I added it here just above the list of tests. Its upto you how you want to do it
output += '<img src="http://www.w3schools.com/html/pic_mountain.jpg" alt="HTML5 Icon" style="width:128px;height:128px;">' + '<ul style="list-style-type:none">';
示例HTML输出: