Created
December 6, 2017 13:40
-
-
Save vitalets/097027b54f04d52d9e50759a8c7d5646 to your computer and use it in GitHub Desktop.
Mocha ES6 modules: index.html with fallback
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Mocha Tests</title> | |
<link href="https://unpkg.com/[email protected]/mocha.css" rel="stylesheet" /> | |
<script src="https://unpkg.com/[email protected]/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