integration-tests/browser-global/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>itDepends specs</title>
<link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
</head>
<body>
<!-- 1. Placeholder node that will contain the test results -->
<div id="mocha"></div>
<!-- 2. Library dependencies -->
<!--<script src="../node_modules/some/library.js"></script>-->
<!-- 3. Library -->
<script src="../../out/dist/it-depends.js"></script>
<!-- 4. Test libraries -->
<script src="../../node_modules/chai/chai.js"></script>
<script src="../../node_modules/mocha/mocha.js"></script>
<!-- 5. Tests -->
<script src="index.js"></script>
<!-- 6. Run tests -->
<script type="text/javascript">
mocha.run();
</script>
</body>
</html>