aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2016-05-25 22:29:04 +0200
committerScott González <scott.gonzalez@gmail.com>2016-05-25 16:42:29 -0400
commit827bf3998e072cc1479dd6369929628242bf0e25 (patch)
treeb8e972224c035e9e8eb89d91490674233e71564d
parente6fd82d351899b166549935b07fc7b9a649515a1 (diff)
downloadjquery-ui-827bf3998e072cc1479dd6369929628242bf0e25.tar.gz
jquery-ui-827bf3998e072cc1479dd6369929628242bf0e25.zip
Build: Don't run tests on IE 8 with jQuery Core 2 and newer
Closes gh-1706
-rw-r--r--build/tasks/testswarm.js4
1 files 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";
}