From 827bf3998e072cc1479dd6369929628242bf0e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Wed, 25 May 2016 22:29:04 +0200 Subject: [PATCH] Build: Don't run tests on IE 8 with jQuery Core 2 and newer Closes gh-1706 --- build/tasks/testswarm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index ce602749d..ac3b17ad4 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -47,8 +47,8 @@ function submit( commit, runs, configFile, extra, done ) { if ( extra ) { - // jquery-git doesn't support IE 8. - if ( extra === "core git" ) { + // jQuery >= 2.0.0 don't support IE 8. + if ( extra.substring( 0, 6 ) !== "core 1" ) { browserSets = "jquery-ui-future"; }