我使用过这个属性并且报告是XML格式的.JavaScript单位结果没有导入到声纳仪表板。
var current_pos = 1250;
$(window).scroll(function() {
var offset = $(window).scrollTop();
console.log(offset);
if(offset > current_pos) {
current_pos += 1250;
//do some function
console.log(current_pos);
}
});
在此处输入代码。
答案 0 :(得分:0)
根据日志中提供的信息,我们可以推断出您提供的XML报告不符合JavaScript插件支持的格式:Test result will not be saved for test class "0.2403 (Windows 7 0.0.0).Given the container controller", because SonarQube associated resource has not been found using file name: "0\2403 (Windows 7 0\0\0)\Given the container controller.js"
一些解释:
有关详细信息,请参阅此文档页面,希望它足够清晰:http://docs.sonarqube.org/display/SONAR/Unit+Test+results+import