UNPKG

m8

Version:

m8 is a small utility library you might find useful or just plain annoying.

30 lines (24 loc) 697 B
<!DOCTYPE HTML> <html lang="en-GB"> <head> <meta charset="UTF-8" /> <title>m8.test</title> <link href="/node_modules/mocha/mocha.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="mocha"></div> <script src="/node_modules/mocha/mocha.js" type="text/javascript"></script> <script src="/node_modules/chai/chai.js" type="text/javascript"></script> <script src="../m8.js" type="text/javascript"></script> <script type="text/javascript"> mocha.setup( { ignoreLeaks : true, ui : 'tdd' } ); </script> <script src="m8.test.js" type="text/javascript"></script> <script type="text/javascript"> mocha.run(); </script> </body> </html>