UNPKG

noflo-core

Version:
33 lines (32 loc) 842 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>core in browser</title> <link rel="stylesheet" href="../node_modules/mocha/mocha.css"> <style type="text/css"> #fixtures { display: none; } </style> </head> <body> <div id="mocha"></div> <div id="fixtures"></div> <script src="../browser/noflo-core.js"></script> <script src="http://chaijs.com/chai.js"></script> <script src="../node_modules/mocha/mocha.js"></script> <script>mocha.setup('bdd');</script> <script src="./Callback.js"></script> <script src="./Kick.js"></script> <script src="./MakeFunction.js"></script> <script> if (window.mochaPhantomJS) { mochaPhantomJS.run(); } else { mocha.checkLeaks(); mocha.run(); } </script> </body> </html>