evtjs
Version:
Javascript API Bindings for the everiToken blockchain.
22 lines (19 loc) • 561 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<script src="../dist/evt.min.js" crossorigin="anonymous"></script>
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
<script>mocha.setup('bdd')</script>
<script src="../dist/evt-test.js"></script>
<script>
//mocha.checkLeaks(); TODO
mocha.globals(['EVT']);
mocha.run();
</script>
</body>
</html>