29 lines
722 B
HTML
29 lines
722 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Mocha Tests</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="mocha"></div>
|
||
|
<div id="scene"></div>
|
||
|
|
||
|
<script src="https://unpkg.com/chai/chai.js"></script>
|
||
|
<script src="https://unpkg.com/mocha/mocha.js"></script>
|
||
|
|
||
|
<script class="mocha-init">
|
||
|
mocha.setup({
|
||
|
ui: 'bdd',
|
||
|
});
|
||
|
mocha.checkLeaks();
|
||
|
chai.should();
|
||
|
</script>
|
||
|
<script src="./scripts/mocha.test.js"></script>
|
||
|
<script class="mocha-exec">
|
||
|
mocha.run();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|