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.
  • Loading branch information
simonihmig committed Dec 6, 2018
1 parent d9498c7 commit e0c16f6
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 @@ -115,10 +115,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 e0c16f6

Please sign in to comment.