cmd/mbf: jstest: add DOM reporter

This commit is contained in:
kat
2026-03-29 01:48:59 +11:00
parent d90d0aaef8
commit f24ebceb9c
4 changed files with 143 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>PkgServer Tests</title>
</head>
<body>
<noscript>
I hate JavaScript as much as you, but this page runs tests written in
JavaScript to test the functionality of code written in JavaScript, so it
wouldn't make sense for it to work without JavaScript. <strong>Please turn
JavaScript on!</strong>
</noscript>
<h1>PkgServer Tests</h1>
<main>
<p id="counters">
<span id="successes">0</span> succeeded, <span id="failures">0</span> failed.
</p>
<div id="root">
</div>
<script type="module" src="./jstest.js"></script>
</main>
</body>
</html>