29 lines
665 B
HTML
29 lines
665 B
HTML
<!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="static/style.css">
|
|
<link rel="stylesheet" href="static/test.css">
|
|
<title>PkgServer Tests</title>
|
|
</head>
|
|
<body>
|
|
<h1>PkgServer Tests</h1>
|
|
|
|
<main>
|
|
<div id="counters">
|
|
<span id="successes">0</span> succeeded, <span id="failures">0</span> failed.
|
|
</div>
|
|
|
|
<div id="root">
|
|
</div>
|
|
|
|
<script type="module" src="./static/test_tests.js"></script>
|
|
<script type="module">
|
|
import { DOMReporter, run } from "./static/test.js";
|
|
run(new DOMReporter());
|
|
</script>
|
|
</main>
|
|
</body>
|
|
</html>
|