From 9bb9a8bac0612e9e1dd9f9da509a3bc2749d8de6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 31 Aug 2015 15:33:02 -0400 Subject: [PATCH] Tests: Load ui/jquery-1-7.js when testing against jQuery 1.7.x --- tests/lib/bootstrap.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 46e0e8ad2..2fe2edd1b 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -140,6 +140,11 @@ function jqueryUrl() { } } + // Load the jQuery 1.7 fixes, if necessary + if ( parseFloat( parseUrl().jquery ) === 1.7 ) { + modules.push( "ui/jquery-1-7" ); + } + requireTests( modules, noBackCompat ); } )(); -- 2.39.5