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 2855930 commit cc9c950
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions template/l1-test-report-template.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<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>

<h1>Stake Test</h1>
<iframe src="report-stake.html" width="100%" height="600px"></iframe>

<h1>Rewards Test</h1>
<iframe src="report-rewards.html" width="100%" height="600px"></iframe>

<h1>Stress Test</h1>
<iframe src="stress_test.log" width="100%" height="600px"></iframe>

<!-- Add more report sections as needed -->
</body>
</html>

0 comments on commit cc9c950

Please sign in to comment.