UnitTests.html 706 B

1234567891011121314151617181920212223
  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="build/three.source.unit.js"></script>
  16. <script src="build/three.example.unit.js"></script>
  17. </body>
  18. </html>