UnitTests.html 762 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>ThreeJS Unit Tests - Using Files in /src</title>
  6. <link rel="stylesheet" href="../../node_modules/qunit/qunit/qunit.css">
  7. </head>
  8. <body>
  9. <div id="qunit"></div>
  10. <div id="qunit-fixture"></div>
  11. <script src="../../node_modules/qunit/qunit/qunit.js"></script>
  12. <!-- We need three.js because qunit-utils cannot be es6 module and use THREE stuff... -->
  13. <script src="../../build/three.js"></script>
  14. <!-- add sources to test below -->
  15. <!-- <script src="three.editor.unit.js"></script> -->
  16. <script src="three.source.unit.js"></script>
  17. <script src="three.example.unit.js"></script>
  18. </body>
  19. </html>