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

25 lines
549 B
HTML
Raw Normal View History

2022-01-04 21:06:17 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Mocha Tests</title>
2022-03-24 20:02:38 +01:00
<link rel="stylesheet" href="node_modules/mocha/mocha.css" />
2022-01-04 21:06:17 +01:00
</head>
<body>
<div id="mocha"></div>
<script src="node_modules/mocha/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-24 20:02:38 +01:00
<script src="dist/stories.test.js"></script>
2022-01-04 21:06:17 +01:00
<script src="dist/hooks/useTalerActionURL.test.js"></script>
<!-- load your test files here -->
<script>
mocha.run();
</script>
</body>
</html>