24 lines
542 B
HTML
24 lines
542 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>mocha.setup('bdd')</script>
|
||
|
|
||
|
<!-- load code you want to test here -->
|
||
|
|
||
|
<!-- script src="dist/stories.test.js"></script -->
|
||
|
<script src="dist/hooks/useTalerActionURL.test.js"></script>
|
||
|
<!-- load your test files here -->
|
||
|
|
||
|
<script>
|
||
|
mocha.run();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|