mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-03-30 15:08:28 +00:00
22 lines
446 B
HTML
22 lines
446 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link href="https://unpkg.com/mocha@10.2.0/mocha.css" rel="stylesheet" />
|
|
<script src="https://unpkg.com/mocha@10.2.0/mocha.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
|
|
<script>
|
|
mocha.setup({ ui: "bdd", globals: ['sprintf', 'vsprintf'] })
|
|
mocha.checkLeaks()
|
|
</script>
|
|
<script src="./bundle.js"></script>
|
|
<script>
|
|
mocha.run()
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|