36 lines
989 B
HTML
36 lines
989 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link rel="stylesheet" href="mocha.css" />
|
|
<link rel="stylesheet" href="screencast-reporter.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="expect.js"></script>
|
|
<script src="mocha.js"></script>
|
|
<script src="screencast-reporter.js"></script>
|
|
<script>
|
|
mocha.setup('bdd');
|
|
mocha.reporter(ScreencastReporter);
|
|
</script>
|
|
<!-- libs -->
|
|
<script src="jquery.js"></script>
|
|
<script src="angular.js"></script>
|
|
<script src="angular-mocks.js"></script>
|
|
|
|
<!-- builds -->
|
|
<script src="elasticsearch.js"></script>
|
|
<script src="elasticsearch.angular.js"></script>
|
|
<script src="elasticsearch.jquery.js"></script>
|
|
|
|
<!-- tests -->
|
|
<script src="build_tests.js"></script>
|
|
<script>
|
|
mochaRunner = mocha.run().on('end', function(){
|
|
window.mochaResults = this.stats;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |