diff options
Diffstat (limited to 'tests/lib/bootstrap.js')
-rw-r--r-- | tests/lib/bootstrap.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 487b3b807..27c1b610f 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -104,8 +104,8 @@ function jqueryUrl() { var version = parseUrl().jquery || DEFAULT_JQUERY_VERSION; var url; - if ( version === "git" ) { - url = "http://code.jquery.com/jquery-" + version; + if ( version === "git" || version === "3.x-git" ) { + url = "https://code.jquery.com/jquery-" + version; } else { url = "../../../external/jquery-" + version + "/jquery"; } @@ -118,9 +118,9 @@ function migrateUrl() { var url; if ( jqueryVersion === "git" ) { - url = "http://code.jquery.com/jquery-migrate-git"; + url = "https://code.jquery.com/jquery-migrate-git"; } else if ( jqueryVersion[ 0 ] === "3" ) { - url = "../../../external/jquery-migrate-3.0.0/jquery-migrate"; + url = "../../../external/jquery-migrate-3.1.0/jquery-migrate"; } else if ( jqueryVersion[ 0 ] === "1" || jqueryVersion[ 0 ] === "2" ) { url = "../../../external/jquery-migrate-1.4.1/jquery-migrate"; } else if ( jqueryVersion === "custom" ) { |