From 063c1f2ca35eda780d84bb5d9f77ab3f5942f687 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?= Date: Mon, 30 Jul 2018 18:06:08 +0200 Subject: [PATCH] Tests: Make support tests pass in Firefox 52 jQuery Core now supports Firefox ESR. --- test/unit/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/support.js b/test/unit/support.js index 331c349a5..0ed77a932 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -296,7 +296,7 @@ testIframe( expected = expectedMap.safari_11; } else if ( /\b(?:9|10)\.\d(\.\d+)* safari/i.test( userAgent ) ) { expected = expectedMap.safari_9_10; - } else if ( /firefox\/60/i.test( userAgent ) ) { + } else if ( /firefox\/(?:52|60)/i.test( userAgent ) ) { expected = expectedMap.firefox_60; } else if ( /firefox/i.test( userAgent ) ) { expected = expectedMap.firefox; -- 2.39.5