index.html 962 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>ZeroClipboard unit tests</title>
  6. <link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
  7. <link rel="stylesheet" href="../node_modules/qunit-composite/qunit-composite.css">
  8. <script src="../node_modules/qunitjs/qunit/qunit.js"></script>
  9. <script src="../node_modules/qunit-composite/qunit-composite.js"></script>
  10. <script>
  11. (function() {
  12. var queryParams = "?noglobals=true";
  13. QUnit.testSuites([
  14. "shared/private.tests.js.html" + queryParams,
  15. "core/private.tests.js.html" + queryParams,
  16. "core/api.tests.js.html" + queryParams,
  17. "client/private.tests.js.html" + queryParams,
  18. "client/api.tests.js.html" + queryParams,
  19. "built/ZeroClipboard.Core.tests.js.html" + queryParams,
  20. "built/ZeroClipboard.tests.js.html" + queryParams
  21. ]);
  22. })();
  23. </script>
  24. </head>
  25. <body>
  26. <div id="qunit"></div>
  27. </body>
  28. </html>