22 lines
734 B
HTML
22 lines
734 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>bigint-crypto-utils - Mocha Tests</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/6.2.1/mocha.min.css">
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/6.2.1/mocha.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
|
<script>mocha.setup('bdd'); mocha.setup({ timeout: 90000 });</script>
|
|
|
|
|
|
<script type="module">
|
|
import * as bigintCryptoUtils from '../../dist/bigint-crypto-utils-latest.browser.mod.js'
|
|
window.bigintCryptoUtils = bigintCryptoUtils;
|
|
import './tests.js';
|
|
mocha.run();
|
|
</script>
|
|
|
|
</body>
|
|
</html> |