diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh
index ae33bb5410..1e9847b9ed 100644
--- a/core/scripts/run-tests.sh
+++ b/core/scripts/run-tests.sh
@@ -143,6 +143,15 @@
 
 $test_list = simpletest_script_get_test_list();
 
+if (in_array('Drupal\Tests\layout_builder\FunctionalJavascript\FieldBlockTest', $test_list)) {
+  // Do the test 100 times.
+  $test_list = array_fill(0, 100, 'Drupal\Tests\layout_builder\FunctionalJavascript\FieldBlockTest');
+}
+else {
+  $test_list = [];
+}
+
+
 // Try to allocate unlimited time to run the tests.
 drupal_set_time_limit(0);
 simpletest_script_reporter_init();
