Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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.

test.html 838B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Mocha Tests</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
  8. </head>
  9. <body>
  10. <div id="mocha"></div>
  11. <script src="https://unpkg.com/chai/chai.js"></script>
  12. <script src="https://unpkg.com/mocha/mocha.js"></script>
  13. <script class="mocha-init">
  14. mocha.setup('bdd');
  15. </script>
  16. <!-- Import the sum function -->
  17. <script src="../scripts/notizen.js"></script>
  18. <script src="../scripts/notizenAusgabe.js"></script>
  19. <!-- Import the tests for the sum function -->
  20. <script src="test.js" type="module"></script>
  21. <script>
  22. // Run the tests with Mocha
  23. //mocha.run();
  24. </script>
  25. </body>
  26. </html>