22 lines
597 B
HTML
22 lines
597 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mocha Tests</title>
|
|
<link rel="stylesheet" href="../../node_modules/mocha/mocha.css">
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../../node_modules/mocha/mocha.js"></script>
|
|
<script src="../../node_modules/chai/chai.js"></script>
|
|
<script>mocha.setup('bdd'); mocha.setup({ timeout: 60000 });</script>
|
|
|
|
|
|
<script type="module">
|
|
import * as bigintUtils from '../../dist/bigint-utils-latest.browser.mod.js'
|
|
window.bigintUtils = bigintUtils;
|
|
import './tests.js';
|
|
mocha.run();
|
|
</script>
|
|
|
|
</body>
|
|
</html> |