testrunner.js 770 B

123456789101112131415161718192021222324252627
  1. jQuery.noConflict(); // Allow the test to run with other libs or jQuery's.
  2. // jQuery-specific QUnit.reset
  3. (function() {
  4. var reset = QUnit.reset,
  5. ajaxSettings = jQuery.ajaxSettings;
  6. QUnit.reset = function() {
  7. reset.apply(this, arguments);
  8. jQuery.event.global = {};
  9. jQuery.ajaxSettings = jQuery.extend({}, ajaxSettings);
  10. };
  11. })();
  12. // load testswarm agent
  13. (function() {
  14. var url = window.location.search;
  15. url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) );
  16. if ( !url || url.indexOf("http") !== 0 ) {
  17. return;
  18. }
  19. // (Temporarily) Disable Ajax tests to reduce network strain
  20. // isLocal = QUnit.isLocal = true;
  21. document.write("<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + (new Date).getTime() + "'></scr" + "ipt>");
  22. })();