<html>
<head>
    <meta charset="utf-8">
    <title>Mocha Tests</title>
    <link href="../node_modules/mocha/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>

<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../js/vendor/sugar.js"></script>

<script>mocha.setup('bdd')</script>
<script src="../dist/kingdom.js"></script>
<script src="browser-test.js"></script>
<script>
    mocha.checkLeaks();
    mocha.run();
</script>
</body>
</html>
