Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

21 lines
544 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/expect.js/expect.js"></script>
  10. <script src="../node_modules/mocha/mocha.js"></script>
  11. <script src="../lib/url-template.js"></script>
  12. <script>mocha.setup('bdd')</script>
  13. <script src="url-template-test.js"></script>
  14. <script>
  15. mocha.checkLeaks();
  16. mocha.run();
  17. </script>
  18. </body>
  19. </html>