Files
elasticsearch-js/test/jquery_build_unit_tests.html
2014-01-15 03:06:56 -07:00

25 lines
611 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="expect.js"></script>
<script src="mocha.js"></script>
<script>
mocha.setup('bdd');
// mocha.checkLeaks();
// mocha.globals(['mochaRunner', 'jQuery']);
</script>
<script src="jquery.js"></script>
<script src="jquery_build.js"></script>
<script>
mocha.run().on('end', function(){
window.mochaResults = runner.stats;
});
</script>
</body>
</html>