bleakjsfirst
Version:
password check library-js
24 lines • 576 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
</head>
<body>
Bleak JS tests
<div id="mocha"></div>
<script src="../distribution/bleakbundle.min.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script>
mocha.ui('bdd');
mocha.reporter('html');
chai.should();
</script>
<script src="./DemoTest.js"></script>
<script>
mocha.run();
</script>
</body>
</html>