2019-04-19 07:42:28 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2019-04-19 10:04:06 +00:00
|
|
|
<title>bigint-crypto-utils - Mocha Tests</title>
|
2020-03-02 22:16:05 +00:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.1.0/mocha.min.css">
|
2019-04-19 07:42:28 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="mocha"></div>
|
2020-03-02 22:16:05 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/7.1.0/mocha.min.js"></script>
|
2019-05-09 17:25:31 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.2.0/chai.min.js"></script>
|
2019-04-19 14:17:09 +00:00
|
|
|
<script>mocha.setup('bdd'); mocha.setup({ timeout: 90000 });</script>
|
2019-04-19 07:42:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
<script type="module">
|
2019-04-19 10:04:06 +00:00
|
|
|
import * as bigintCryptoUtils from '../../dist/bigint-crypto-utils-latest.browser.mod.js'
|
|
|
|
window.bigintCryptoUtils = bigintCryptoUtils;
|
2019-04-19 07:42:28 +00:00
|
|
|
import './tests.js';
|
|
|
|
mocha.run();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|