diff --git a/dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js b/dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js
index 70e608d5bfefd6c55b097cf1db716cea5b72d763..1034ad263d9fea4f96a611b81f870689ef4d9d3d 100644
--- a/dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js
+++ b/dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js
@@ -270,29 +270,34 @@ define([
             jasmine.clock().uninstall();
         });
 
-        it('check if the title bar is prevented from being created', function () {
-            var dialog = $('<div/>'),
-                uiClass = '.ui-dialog',
-                ui;
+        // Backend jquery-ui version has a diferent behavior on create that will add ui-dialog-titlebar anyway.
+        // This test is only valid with frontend's version
+        // @TODO: Re-design Jasmine settings to match a selective architecture for testing in order to split them.
+        if ($.ui.version !== '1.9.2') {
+            it('check if the title bar is prevented from being created', function () {
+                var dialog = $('<div/>'),
+                    uiClass = '.ui-dialog',
+                    ui;
 
-            dialog.dropdownDialog({
-                'createTitleBar': true
-            });
+                dialog.dropdownDialog({
+                    'createTitleBar': true
+                });
 
-            ui = $(uiClass);
-            expect(ui.find('.ui-dialog-titlebar').length > 0).toBeTruthy();
+                ui = $(uiClass);
+                expect(ui.find('.ui-dialog-titlebar').length > 0).toBeTruthy();
 
-            dialog.dropdownDialog('destroy');
+                dialog.dropdownDialog('destroy');
 
-            dialog.dropdownDialog({
-                'createTitleBar': false
-            });
+                dialog.dropdownDialog({
+                    'createTitleBar': false
+                });
 
-            ui = $(uiClass);
-            expect(ui.find('.ui-dialog-titlebar').length <= 0).toBeTruthy();
+                ui = $(uiClass);
+                expect(ui.find('.ui-dialog-titlebar').length <= 0).toBeTruthy();
 
-            dialog.dropdownDialog('destroy');
-        });
+                dialog.dropdownDialog('destroy');
+            });
+        }
 
         it('check if the position function gets disabled', function () {
             var dialog = $('<div/>'),