forked from rosa/hakurei
35 lines
897 B
HTML
35 lines
897 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="/testui/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">
|
|
import "/test/all_tests.js";
|
|
import { DOMReporter, GLOBAL_REGISTRAR } from "/test/lib/test.js";
|
|
GLOBAL_REGISTRAR.run(new DOMReporter());
|
|
</script>
|
|
</main>
|
|
</body>
|
|
</html>
|