UNPKG

linear-converter

Version:
28 lines (27 loc) 889 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Linear Converter tests</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/2.2.5/mocha.css" /> </head> <body> <div id="mocha"></div> <script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/2.2.5/mocha.js"></script> <script src="https://cdn.rawgit.com/shouldjs/should.js/6.0.3/should.js"></script> <script src="../../tmp/arbitrary-precision"></script> <script src="../../tmp/linear-preset-factory"></script> <script src="../../tmp/linear-presets"></script> <script src="../../tmp/floating-adapter"></script> <script src="../../tmp/bigjs-adapter"></script> <script src="../../tmp/linear-converter.js"></script> <script> mocha.setup('bdd'); </script> <script src="browser.js"></script> <script> mocha.checkLeaks(); mocha.run(); </script> </body> </html>