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.

tests.html 522 B

3 jaren geleden
123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <title>JSS Tests</title>
  7. <link href="./node_modules/mocha/mocha.css" rel="stylesheet" />
  8. </head>
  9. <body>
  10. <div id="mocha"></div>
  11. <script src="./node_modules/es5-shim/es5-shim.js"></script>
  12. <script src="./node_modules/mocha/mocha.js"></script>
  13. <script>mocha.setup('bdd')</script>
  14. <script src="tmp/tests.js"></script>
  15. <script>
  16. mocha.checkLeaks();
  17. mocha.run();
  18. </script>
  19. </body>
  20. </html>