dentalruralhealth-pack
Version:
Interactive to simulate a rural health office creation
24 lines (23 loc) • 695 B
HTML
<html>
<head>
<meta charset="utf-8">
<!-- encoding must be set for mocha's special characters to render properly -->
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script>
mocha.ui('bdd')
expect = chai.expect
</script>
<script src="../dist/testBundle.js"></script>
<script>
mocha.run()
</script>
<!-- @todo - consider how to include/reference project-level index.html -->
<div class="steps"></div>
<div class="office-location"></div>
</body>
</html>