diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/bootstrap.js | 2 | ||||
-rw-r--r-- | tests/lib/qunit.js | 1 | ||||
-rw-r--r-- | tests/unit/subsuite.js | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 2f1b7ef4b..5837fc96b 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -111,6 +111,8 @@ function migrateUrl() { if ( jqueryVersion === "git" ) { url = "https://releases.jquery.com/git/jquery-migrate-git"; + } else if ( jqueryVersion[ 0 ] === "4" ) { + url = "../../../external/jquery-migrate-4.x/jquery-migrate"; } else if ( jqueryVersion[ 0 ] === "3" ) { url = "../../../external/jquery-migrate-3.x/jquery-migrate"; } else if ( jqueryVersion[ 0 ] === "1" || jqueryVersion[ 0 ] === "2" ) { diff --git a/tests/lib/qunit.js b/tests/lib/qunit.js index c4c96ef58..0f4985a67 100644 --- a/tests/lib/qunit.js +++ b/tests/lib/qunit.js @@ -26,6 +26,7 @@ QUnit.config.urlConfig.push( { "3.5.0", "3.5.1", "3.6.0", "3.6.1", "3.6.2", "3.6.3", "3.6.4", "3.7.0", "3.7.1", + "4.0.0-rc.1", "3.x-git", "git", "custom" ], tooltip: "Which jQuery Core version to test against" diff --git a/tests/unit/subsuite.js b/tests/unit/subsuite.js index d9766cf33..4e634b363 100644 --- a/tests/unit/subsuite.js +++ b/tests/unit/subsuite.js @@ -12,6 +12,7 @@ var versions = [ "3.5.0", "3.5.1", "3.6.0", "3.6.1", "3.6.2", "3.6.3", "3.6.4", "3.7.0", "3.7.1", + "4.0.0-rc.1", "3.x-git", "git", "custom" ], additionalTests = { |