UNPKG

react-microspreadsheet

Version:

A pluggable spreadsheet component.

35 lines (34 loc) 963 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Mocha Tests</title> <link rel="stylesheet" href="../node_modules/mocha/mocha.css" /> </head> <body> <div id="mocha"></div> <script src="../node_modules/jquery/dist/jquery.js"></script> <script src="../node_modules/chai/chai.js"></script> <script src="../node_modules/mocha/mocha.js"></script> <script src="https://cdn.rawgit.com/ccampbell/mousetrap/2e5c2a8adbe80a89050aaf4e02c45f02f1cc12d4/tests/libs/key-event.js"></script> <script>mocha.setup('bdd')</script> <script>mocha.reporter('html')</script> <script> Function.prototype.bind = Function.prototype.bind || function (thisp) { var fn = this; return function () { return fn.apply(thisp, arguments); }; }; </script> <script src="bundle.js"></script> <script> if (window.mochaPhantomJS) { mochaPhantomJS.run() } else { mocha.run() } </script> </body> </html>