bigint-crypto-utils/test/browser/index.html

22 lines
644 B
HTML
Raw Normal View History

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>
2019-04-19 07:42:28 +00:00
<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>
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>