2023-01-29 04:38:28 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2023-02-02 21:51:54 -06:00
|
|
|
<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>
|
|
|
|
<h2><a href="../">DGF Tests</a></h2>
|
|
|
|
<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>
|
2023-01-29 04:38:28 -06:00
|
|
|
|
|
|
|
</html>
|