Skip to content

Instantly share code, notes, and snippets.

@vitalets
Created December 6, 2017 13:40
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/097027b54f04d52d9e50759a8c7d5646 to your computer and use it in GitHub Desktop.
Save vitalets/097027b54f04d52d9e50759a8c7d5646 to your computer and use it in GitHub Desktop.
Mocha ES6 modules: index.html with fallback
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="https://unpkg.com/mocha@4.0.1/mocha.css" rel="stylesheet" />
<script src="https://unpkg.com/mocha@4.0.1/mocha.js"></script>
</head>
<body>
<div id="mocha"></div>
<script type="module" src="setup.js"></script>
<script type="module" src="run.js"></script>
<script nomodule src="bundle.js"></script> <!-- for older browsers -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment