mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
25 lines
664 B
HTML
25 lines
664 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<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')</script>
|
|
|
|
<!-- Helpers -->
|
|
<!--<script type="module" src="/client/helpers/events.js"></script>-->
|
|
|
|
<script type="module" src="../client/helpers/crypto.js"></script>
|
|
|
|
<!-- load your test files here -->
|
|
|
|
<script>
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|