| <!doctype html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>Mocha</title> |
| <link rel="stylesheet" type="text/css" href="../../node_modules/mocha/mocha.css"> |
| </head> |
| <body> |
| <div id="mocha"></div> |
| <script> |
| var val = window.location.search.match(/[&\?]es5shims?=([^&\?]+)/); |
| if (val && val[1] === 'true') { |
| document.write('<script src="../../node_modules/es5-shim/es5-shim.js"></' + 'script>'); |
| } |
| </script> |
| <script src="../../node_modules/mocha/mocha.js"></script> |
| <script src="../../node_modules/chai/chai.js"></script> |
| <script src="../../node_modules/chai-as-promised/lib/chai-as-promised.js"></script> |
| <script> |
| mocha.setup({ |
| timeout:100000, |
| ui: 'bdd' |
| }); |
| var should = chai.should(); |
| </script> |
| <script src='../integration/utils.js'></script> |
| <script src="test.mapreduce.js"></script> |
| <script src='test.views.js'></script> |
| <script type="text/javascript" src="../integration/webrunner.js"></script> |
| </body> |
| </html> |