Skip to content

Commit

Permalink
Update old jQuery versions for tests
Browse files Browse the repository at this point in the history
Updates the suite of tests for old jQuery versions to run with latest of
1.10.x, 1.12.x and 2.2.x.

Unlocks #17227 which is failing due to jQuery 1.8 presumably not handling
events on SVGs correctly.

(cherry picked from commit e0c16f6)
  • Loading branch information
simonihmig authored and kategengler committed Dec 6, 2018
1 parent 355ec30 commit 4f0223e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/run-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ function generateBuiltTests() {

function generateOldJQueryTests() {
testFunctions.push(function() {
return run('jquery=1.8.3&nolint=true');
return run('jquery=1.10.2&nolint=true');
});
testFunctions.push(function() {
return run('jquery=1.10.2&nolint=true');
return run('jquery=1.12.4&nolint=true');
});
testFunctions.push(function() {
return run('jquery=2.2.4&nolint=true');
Expand Down

0 comments on commit 4f0223e

Please sign in to comment.