SAP-BTP-Spielwiese/app1/node_modules/jwt-decode/test_harness.html
Markus Rettig 775ac7b58c completed step 3 from the tutorial
you must login with an BTP account in order to see the app
2024-02-08 16:13:36 +01:00

29 lines
No EOL
617 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests Harness</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 src="/testem.js"></script>
<script src="/node_modules/expect.js/expect.js"></script>
<script src="/build/jwt-decode.js"></script>
<script>
mocha.timeout(60000);
mocha.ui('bdd');
mocha.reporter('html');
mocha.setup({ignoreLeaks: true});
</script>
<script src="/test/tests.js"></script>
<script>
mocha.run();
</script>
</body>
</html>