<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>... Test name ...</title>
    <link rel="stylesheet" href="css/mocha.css" type="text/css" charset="utf-8" />
</head>
<body>
    <!-- Required for browser reporter -->
    <div id="mocha"></div>

    <!-- mocha -->
    <script src="js/mocha.js"></script>
    <script>
        // This will be overridden by mocha-helper if you run with grunt
        mocha.setup('bdd');
    </script>

    <!--
         IMPORTANT
         If you do not want to set the `run` option to `true` for some reason
         and are not using AMD, you must include the bridge.js file
         in the `phantomjs` folder after you include `mocha.js`
    -->
    <script src="js/phantomjs/bridge.js"></script>

    <!-- Include your assertion lib of choice -->
    <script src="js/chai.js"></script>
    <script>
        // Setup chai
        var expect = chai.expect;
    </script>

    <!-- Include anything you want to test -->
    <script src="../node_modules/proto/lib/proto.js"></script>
    <script src="../milo.bundle.js"></script>

    <!-- Spec files -->
    <script src="... js script file for test ..."></script>

    <!-- run mocha -->
    <script type="text/javascript">
        mocha
            .globals(['milo', '_']) // acceptable globals
            .run();
    </script>
</body>
</html>