Handle auto-running of the TestSwarm injection script in the test suite.

This commit is contained in:
jeresig 2010-03-23 12:19:47 -04:00
parent 8effe3a7de
commit f6a50cacd8

View file

@ -1 +1,11 @@
jQuery.noConflict(); // Allow the test to run with other libs or jQuery's.
// load testswarm agent
(function() {
var url = window.location.search;
url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) );
if ( !url || url.indexOf("http") !== 0 ) {
return;
}
document.write("<scr" + "ipt src='http://testswarm.com/js/inject.js?" + (new Date).getTime() + "'></scr" + "ipt>");
})();