diff --git a/core/modules/views_ui/js/views-admin.js b/core/modules/views_ui/js/views-admin.js
index 761185e..5c58168 100644
--- a/core/modules/views_ui/js/views-admin.js
+++ b/core/modules/views_ui/js/views-admin.js
@@ -703,7 +703,7 @@
       // it match the action link styling used in a typical page.html.twig.
       // Since Drupal does not provide a theme function for this markup this is
       // the best we can do.
-      $('<ul class="action-links"><li><a id="views-add-group-link" href="#">' + this.addGroupButton.val() + '</a></li></ul>')
+      $('<ul class="action-links"><li><a id="views-add-group-link" style="display: block; height: 60px;" href="#">' + this.addGroupButton.val() + '</a></li></ul>')
         .prependTo(this.table.parent())
         // When the link is clicked, dynamically click the hidden form button
         // for adding a new filter group.
diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh
index 9e832a5..bd435e3 100755
--- a/core/scripts/run-tests.sh
+++ b/core/scripts/run-tests.sh
@@ -142,6 +142,14 @@
 
 $test_list = simpletest_script_get_test_list();
 
+if (in_array('Drupal\Tests\views_ui\FunctionalJavascript\FilterCriteriaTest', $test_list)) {
+  // Do the test 50 times.
+  $test_list = array_fill(0, 50, 'Drupal\Tests\views_ui\FunctionalJavascript\FilterCriteriaTest');
+}
+else {
+  $test_list = [];
+}
+
 // Try to allocate unlimited time to run the tests.
 drupal_set_time_limit(0);
 simpletest_script_reporter_init();
