diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-03-09 00:09:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 00:09:51 +0100 |
commit | e6592a8affcf26063dbfeb20ca9a599b11e1f07a (patch) | |
tree | bc4e0f86e498dfa472d9f880576b4ca795741bac /tests | |
parent | 834ee5f7cfb621b5f75292915a00319927a9a6d0 (diff) | |
download | jquery-ui-e6592a8affcf26063dbfeb20ca9a599b11e1f07a.tar.gz jquery-ui-e6592a8affcf26063dbfeb20ca9a599b11e1f07a.zip |
Build: Add jQuery 3.6.0, update Migrate from 3.3.1 to 3.3.2
Closes gh-1948
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, 3 insertions, 1 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 6178e5052..5dcc2702e 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -123,7 +123,7 @@ function migrateUrl() { if ( jqueryVersion === "git" ) { url = "https://code.jquery.com/jquery-migrate-git"; } else if ( jqueryVersion[ 0 ] === "3" ) { - url = "../../../external/jquery-migrate-3.3.1/jquery-migrate"; + url = "../../../external/jquery-migrate-3.3.2/jquery-migrate"; } else if ( jqueryVersion[ 0 ] === "1" || jqueryVersion[ 0 ] === "2" ) { url = "../../../external/jquery-migrate-1.4.1/jquery-migrate"; } else if ( jqueryVersion === "custom" ) { diff --git a/tests/lib/qunit.js b/tests/lib/qunit.js index 939e5b01c..1395e7c84 100644 --- a/tests/lib/qunit.js +++ b/tests/lib/qunit.js @@ -34,6 +34,7 @@ QUnit.config.urlConfig.push( { "3.3.0", "3.3.1", "3.4.0", "3.4.1", "3.5.0", "3.5.1", + "3.6.0", "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 586e66736..77dc4a943 100644 --- a/tests/unit/subsuite.js +++ b/tests/unit/subsuite.js @@ -15,6 +15,7 @@ var versions = [ "3.3.0", "3.3.1", "3.4.0", "3.4.1", "3.5.0", "3.5.1", + "3.6.0", "3.x-git", "git", "custom" ], additionalTests = { |