<!DOCTYPE html> <html> <head> <title>Mocha Tests</title> <link rel="stylesheet" href="/mocha.css" /> </head> <body> <div id="mocha"></div> <script src="/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>