wallet-core/packages/taler-wallet-webextension/run-test-in-browser.html

24 lines
542 B
HTML
Raw Normal View History

2022-01-04 21:06:17 +01:00
<!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>