Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacqueline-57b committed Jul 16, 2024
1 parent 5fb00c5 commit afa79cf
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions 20240716/l1-test-report.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,6 @@
<title>L1 Devnet Test Report</title>
</head>
<body>
<script>
var currentDate = new Date();
var year = currentDate.getFullYear();
var month = (currentDate.getMonth() + 1).toString().padStart(2, '0');
var day = currentDate.getDate().toString().padStart(2, '0');
var formattedDate = year + '-' + month + '-' + day;

var titleElement = document.createElement('h1');
titleElement.textContent = 'L1 Test Report ' + formattedDate;

document.body.insertBefore(titleElement, document.body.firstChild);
</script>

<h1>RPC Test</h1>
<iframe src="mergedReport.html" width="100%" height="600px"></iframe>

Expand All @@ -30,5 +17,14 @@ <h1>Stress Test</h1>
<iframe src="stress_test.log" width="100%" height="600px"></iframe>

<!-- Add more report sections as needed -->

<script>
window.onload = function() {
var titleElement = document.createElement('h1');
titleElement.textContent = 'L1 Devnet Test Report';

document.body.insertBefore(titleElement, document.body.firstChild);
};
</script>
</body>
</html>

0 comments on commit afa79cf

Please sign in to comment.