31 lines
685 B
HTML
31 lines
685 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
|
|
<style>
|
|
|
|
body {
|
|
/* background-color: rgb(195, 195, 195); */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../../node_modules/mocha/mocha.js"></script>
|
|
<script src="../dist/javascripts/app.js"></script>
|
|
<script>mocha.setup('bdd')</script>
|
|
<!-- <script type="module" src="models.test.js"></script> -->
|
|
|
|
<script>
|
|
// Object.assign(window, SNLibrary);
|
|
// console.log(SNLibrary);
|
|
</script>
|
|
|
|
<script type="module">
|
|
mocha.checkLeaks();
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|