diff --git a/report/index.html b/report/index.html index 8b9ba88..f619432 100644 --- a/report/index.html +++ b/report/index.html @@ -10,7 +10,7 @@

Integration Test Reports of the MIP Federations

- This page references and shows the stattus of the integration test reports of the MIP federations, + This page references and shows the status of the integration test reports of the MIP federations, generated by the pytest-mip project.

diff --git a/report/js/reports-parser.js b/report/js/reports-parser.js index d165063..3750509 100644 --- a/report/js/reports-parser.js +++ b/report/js/reports-parser.js @@ -68,7 +68,7 @@ function createReportTableHeader() { headerRow.appendChild(dateHeader); // Append the link to the report to the table head const linkHeader = document.createElement("th"); - linkHeader.innerHTML = "Link"; + linkHeader.innerHTML = "Pytest HTML Report"; linkHeader.setAttribute("rowspan", "2"); headerRow.appendChild(linkHeader); // Append the overall status to the table head @@ -118,7 +118,7 @@ async function createReportTableRow(report) { // Append the link to the report const linkCell = document.createElement("td"); const link = document.createElement("a"); - link.textContent = report.link; + link.textContent = "link"; link.href = report.link; link.target = "_blank"; linkCell.appendChild(link);