bitburner-src/test/index.html

25 lines
771 B
HTML
Raw Normal View History

2018-05-05 05:29:22 +02:00
<html>
<!-- NOT CURRENTLY USED. Used to run mocha in browser -->
2018-05-05 05:29:22 +02:00
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="https://unpkg.com/mocha@6.1.4/mocha.css" rel="stylesheet" />
2018-05-05 05:29:22 +02:00
</head>
<body>
<div id="mocha"></div>
<script defer src="https://unpkg.com/chai/chai.js"></script>
<script defer src="https://unpkg.com/mocha/mocha.js"></script>
2018-05-05 05:29:22 +02:00
<script type="module" class="mocha-init">
mocha.setup('bdd');
2018-05-05 05:29:22 +02:00
mocha.checkLeaks();
</script>
<script type="module" src="test.bundle.js"></script>
<script class="mocha-exec" type="module">
console.log("Running Tests");
2018-05-05 05:29:22 +02:00
mocha.run();
</script>
</body>
</html>