UNPKG

mousetrap

Version:

Simple library for handling keyboard shortcuts

25 lines (21 loc) 674 B
<!DOCTYPE html> <head> <meta charset="utf-8"> <title>Mousetrap Tests</title> <link rel="stylesheet" href="../node_modules/mocha/mocha.css"> </head> <body> <div id="mocha"></div> <script src="../node_modules/chai/chai.js"></script> <script src="../node_modules/sinon/pkg/sinon.js"></script> <script src="../node_modules/mocha/mocha.js"></script> <script src="../mousetrap.js"></script> <script src="libs/key-event.js"></script> <script>mocha.setup('bdd')</script> <script src="test.mousetrap.js"></script> <script> mocha.checkLeaks(); mocha.globals(['Mousetrap']); mocha.run(); </script> </body>