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 769B

1234567891011121314151617181920212223242526272829303132
  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="../add.js"></script>
  18. <!-- Import the tests for the sum function -->
  19. <script src="test.js" type="module"></script>
  20. <script>
  21. // Run the tests with Mocha
  22. //mocha.run();
  23. </script>
  24. </body>
  25. </html>