2022-01-04 21:06:17 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Mocha Tests</title>
|
2022-03-25 20:57:27 +01:00
|
|
|
<link rel="stylesheet" href="/mocha.css" />
|
2022-01-04 21:06:17 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="mocha"></div>
|
2022-03-25 20:57:27 +01:00
|
|
|
<script src="/mocha.js"></script>
|
2022-03-24 20:02:38 +01:00
|
|
|
<script>
|
|
|
|
mocha.setup("bdd");
|
|
|
|
</script>
|
2022-01-04 21:06:17 +01:00
|
|
|
|
|
|
|
<!-- load code you want to test here -->
|
2022-03-25 20:57:27 +01:00
|
|
|
<script src="/dist/stories.test.js"></script>
|
|
|
|
<script src="/dist/hooks/useTalerActionURL.test.js"></script>
|
2022-01-04 21:06:17 +01:00
|
|
|
<!-- load your test files here -->
|
|
|
|
|
|
|
|
<script>
|
|
|
|
mocha.run();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|