UNPKG

creatable

Version:

Elegant HTML generation. No templating. Just Javascript.

20 lines 531 B
<html> <head> <meta charset="utf-8"> <title>Mocha Tests</title> <link rel="stylesheet" href="../components/mocha/mocha.css" /> </head> <body> <div id="mocha"></div> <script src="../components/jquery/jquery.js"></script> <script src="../components/chai/chai.js"></script> <script src="../components/mocha/mocha.js"></script> <script src="../creatable.js"></script> <script>mocha.setup('bdd')</script> <script src="spec.js"></script> <script> mocha.checkLeaks(); mocha.run(); </script> </body> </html>