Skip to content

Instantly share code, notes, and snippets.

@vitalets
Last active December 8, 2017 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitalets/e6a31cfdb680245eaf5a18c47f7bb1d9 to your computer and use it in GitHub Desktop.
Save vitalets/e6a31cfdb680245eaf5a18c47f7bb1d9 to your computer and use it in GitHub Desktop.
Mocha ES6 modules: html after cleanup
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="https://unpkg.com/mocha@4.0.1/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="https://unpkg.com/chai@4.1.2/chai.js"></script>
<script src="https://unpkg.com/mocha@4.0.1/mocha.js"></script>
<script>mocha.setup('bdd')</script>
<script>
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment