mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Tests: Use QUnit URL parameter parsing
This commit is contained in:
parent
f9af896bb8
commit
f23a64d745
@ -269,12 +269,9 @@ this.iframeCallback = undefined;
|
||||
// Tests are always loaded async
|
||||
QUnit.config.autostart = false;
|
||||
this.loadTests = function() {
|
||||
var loadSwarm,
|
||||
url = window.location.search,
|
||||
basicTests = jQuery.inArray( "module=basic", url.substring( 1 ).split( "&" ) ) > -1;
|
||||
|
||||
url = decodeURIComponent( url.slice( url.indexOf( "swarmURL=" ) + "swarmURL=".length ) );
|
||||
loadSwarm = url && url.indexOf( "http" ) === 0;
|
||||
// Leverage QUnit URL parsing to detect testSwarm environment and "basic" testing mode
|
||||
var loadSwarm = ( QUnit.urlParams[ "swarmURL" ] + "" ).indexOf( "http" ) === 0,
|
||||
basicTests = ( QUnit.urlParams[ "module" ] + "" ) === "basic";
|
||||
|
||||
// Get testSubproject from testrunner first
|
||||
require( [ "data/testrunner.js" ], function() {
|
||||
|
Loading…
Reference in New Issue
Block a user