28 lines
657 B
HTML
28 lines
657 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/chai/chai.js"></script>
|
|
|
|
<script>
|
|
mocha.setup('bdd')
|
|
mocha.reporter('html');
|
|
</script>
|
|
|
|
<!-- Tests -->
|
|
<script src="../detectie.js"></script>
|
|
<script src="test.js"></script>
|
|
|
|
<script>
|
|
// Only tests run in real browser, injected script run if options.run == true
|
|
if (navigator.userAgent.indexOf('PhantomJS') < 0) {
|
|
mocha.run();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |