bigint-crypto-utils/src/browser-test-template.html

15 lines
426 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>{{PKG_NAME}} - 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>
<script>mocha.setup('bdd'); mocha.setup({ timeout: 60000 });</script>
{{TESTS}}
</body>
</html>