You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
522 B

  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>Mocha Tests</title>
  5. <link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
  6. </head>
  7. <body>
  8. <div id="mocha"></div>
  9. <script src="../node_modules/chai/chai.js"></script>
  10. <script src="../node_modules/mocha/mocha.js"></script>
  11. <script>
  12. mocha.setup('bdd');
  13. expect = chai.expect;
  14. </script>
  15. <script src="../iban.js"></script>
  16. <script src="ibanTest.js"></script>
  17. <script>
  18. mocha.run();
  19. </script>
  20. </body>
  21. </html>