-
Notifications
You must be signed in to change notification settings - Fork 22
/
longRunningTestsReport.html
51 lines (39 loc) · 1.59 KB
/
longRunningTestsReport.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html lang="en">
<head>
<title>Apache Ignite Teamcity Bot - Long Running Tests Report</title>
<link rel="icon" href="img/leaf-icon-png-7066.png">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="css/style-1.5.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/common-1.6.js"></script>
<script src="js/long_running-1.0.js"></script>
<script>
$(document).ready(function() {
$.getScript("js/long_running-1.0.js", function(data, textStatus, jqxhr){ });
loadData();
});
function loadData() {
var longRunningUrl = "rest/long_running/summary?branch=master";
$("#loadStatus").html("⌛ Please wait");
$.ajax({
url: longRunningUrl,
success: function(result) {
$("#loadStatus").html("");
showData(result);
},
error: showErrInLoadStatus
});
}
function showData(result) {
$("#divLongRunningSummary").html(showLongRunningTestsSummary(result));
}
</script>
</head>
<body>
<div id="loadStatus"></div>
<div id="divLongRunningSummary"></div>
</body>
</html>