mirror of https://github.com/keeweb/keeweb
24 lines
655 B
HTML
24 lines
655 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>KeeWeb Tests</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
|
|
<script class="mocha-init">
|
|
mocha.setup('bdd');
|
|
mocha.checkLeaks();
|
|
</script>
|
|
<script src="dist/test.bundle.js"></script>
|
|
<script class="mocha-exec">
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|