UNPKG

chicago

Version:

A front-end JavaScript library for user-interface developers.

35 lines (28 loc) 729 B
<html> <head> <meta charset="utf-8"> <title>Chicago Mocha Tests - Chicago.Utils</title> <!-- Testing --> <link rel="stylesheet" href="css/mocha.css"> <link rel="stylesheet" href="css/style.css"> </head> <body> <div id="mocha"></div> <!-- Deps --> <script src="js/jquery.js"></script> <!-- Libs --> <script src="js/mocha.js"></script> <script src="js/should.js"></script> <script>mocha.setup('bdd');</script> <!-- Scripts to test --> <script src="../../dist/Chicago.js" data-cover></script> <!-- Test Specs --> <script src="spec/utils.js"></script> <script> mocha.checkLeaks(); if (navigator.userAgent.indexOf('PhantomJS') < 0) { mocha.run(); } </script> </body> </html>