mirror of https://github.com/sipwise/kibana.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
613 B
24 lines
613 B
<!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');
|
|
</script>
|
|
<script src="vendor/require/require.js"></script>
|
|
<script src="app/components/require.config.js"></script>
|
|
<script src="specs.js"></script>
|
|
<script>
|
|
mochaRunner = mocha.run().on('end', function(){
|
|
window.mochaResults = this.stats;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |