UNPKG

fliphub-monorepo

Version:
25 lines (24 loc) 655 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CCSS compiler in browser</title> <link rel="stylesheet" href="../node_modules/mocha/mocha.css"> </head> <body> <div id="mocha"></div> <script src="../browser/gom-html-parser.js"></script> <script src="../node_modules/chai/chai.js"></script> <script src="../node_modules/mocha/mocha.js"></script> <script>mocha.setup('bdd');</script> <script src="./compiler.js"></script> <script> if (window.mochaPhantomJS) { mochaPhantomJS.run(); } else { mocha.checkLeaks(); mocha.run(); } </script> </body> </html>