octo-deno/tests/index.html

25 lines
842 B
HTML
Raw Normal View History

2017-04-22 20:16:47 +00:00
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
2017-04-07 10:56:18 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Octo Unit Tests</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.3.0.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.3.0.js"></script>
<!-- Include sources -->
2017-04-07 10:56:18 +00:00
<script src="../random/mersennetwister.js"></script>
<script src="../random/random.js"></script>
<!-- Include tests -->
2017-04-07 10:56:18 +00:00
<script src="random/mersennetwister.js"></script>
<script src="random/random.js"></script>
2017-04-07 10:56:18 +00:00
</body>
</html>