b3c7ecbe2f
qunit tests in firefox and chrome. Maintaining code to work in node for testing only will be error-prone.
20 lines
629 B
HTML
20 lines
629 B
HTML
<!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 -->
|
|
<script src="../random/mersennetwister.js"></script>
|
|
<script src="../random/random.js"></script>
|
|
<!-- Include tests -->
|
|
<script src="random/mersennetwister.js"></script>
|
|
<script src="random/random.js"></script>
|
|
</body>
|
|
</html>
|