UNPKG

synctasks

Version:

An explicitly non-A+ Promise library that resolves promises synchronously

22 lines (19 loc) 570 B
<html> <head> <meta charset="utf-8"> <title>Mocha Tests</title> <link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" /> </head> <body> <div id="mocha"></div> <script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script> <script>mocha.setup({ui: 'bdd'})</script> <script src="SyncTasksTestsPack.js"></script> <script> // Edge seems to make globals for these for some reason mocha.globals(['$0','$1','$2','$3','$4']); mocha.checkLeaks(); mocha.run(); </script> </body> </html>