Skip to content

Commit

Permalink
misc: review info to display in pytest html report link column
Browse files Browse the repository at this point in the history
sebastientourbier authored Apr 5, 2023
1 parent fc9bcdd commit 1c5d28f
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion report/index.html
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
<h1>Integration Test Reports of the MIP Federations</h1>

<p>
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 <a href="https://github.com/HBPMedical/pytest-mip">pytest-mip</a> project.
</p>

4 changes: 2 additions & 2 deletions report/js/reports-parser.js
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit 1c5d28f

Please sign in to comment.