diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh
index 15e6e80..05fbbfe 100755
--- a/core/scripts/run-tests.sh
+++ b/core/scripts/run-tests.sh
@@ -102,7 +102,14 @@
   exit(SIMPLETEST_SCRIPT_EXIT_SUCCESS);
 }
 
-$test_list = simpletest_script_get_test_list();
+//$test_list = simpletest_script_get_test_list();
+if (in_array('PHPUnit-FunctionalJavascript', $args['types'], TRUE)) {
+  $test_list = ['Drupal\Tests\toolbar\FunctionalJavascript\ToolbarIntegrationTest'];
+}
+else {
+  $test_list = [];
+}
+$args['repeat'] = 30;
 
 // Try to allocate unlimited time to run the tests.
 drupal_set_time_limit(0);
