Skip to content

Instantly share code, notes, and snippets.

@ottogutierrez
Created January 10, 2019 03:42
Show Gist options
  • Save ottogutierrez/ee686b88f3a812651dfa3736f660eeac to your computer and use it in GitHub Desktop.
Save ottogutierrez/ee686b88f3a812651dfa3736f660eeac to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Mocha Tests</title>
<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.setup('bdd')</script>
<!-- load code you want to test here -->
<!-- load your test files here -->
<script>
mocha.run();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment