mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-08 01:12:49 +01:00
24 lines
664 B
HTML
24 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>
|