diff --git a/core/modules/simpletest/simpletest.module b/core/modules/simpletest/simpletest.module
index 751a729..e8364e5 100644
--- a/core/modules/simpletest/simpletest.module
+++ b/core/modules/simpletest/simpletest.module
@@ -380,7 +380,7 @@ function simpletest_phpunit_command() {
     $phpunit_bin = escapeshellarg($php) . ' -f ' . escapeshellarg($vendor_dir . '/phpunit/phpunit/composer/bin/phpunit') . ' --';
   }
   else {
-    $phpunit_bin = $vendor_dir . '/phpunit/phpunit/phpunit';
+    $phpunit_bin = $vendor_dir . '/phpunit/phpunit/phpunit --debug';
   }
   return $phpunit_bin;
 }
diff --git a/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php b/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php
index c3b3d9a..0a626cb 100644
--- a/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php
+++ b/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php
@@ -20,12 +20,16 @@ class ToolbarIntegrationTest extends JavascriptTestBase {
    * Tests if the toolbar can be toggled with JavaScript.
    */
   public function testToolbarToggling() {
+//    $this->drupalGet('<front>');
+    var_dump('Got anon');
     $admin_user = $this->drupalCreateUser([
       'access toolbar',
       'administer site configuration',
       'access content overview',
     ]);
     $this->drupalLogin($admin_user);
+    var_dump('Logged in');
+//    $this->assertTrue(TRUE, 'Got here 2');
 
     $this->drupalGet('<front>');
     $page = $this->getSession()->getPage();
diff --git a/core/phpunit.xml.dist b/core/phpunit.xml.dist
index 2b45c64..10b477a 100644
--- a/core/phpunit.xml.dist
+++ b/core/phpunit.xml.dist
@@ -11,7 +11,7 @@
 -->
 <phpunit bootstrap="tests/bootstrap.php" colors="true"
          beStrictAboutTestsThatDoNotTestAnything="true"
-         beStrictAboutOutputDuringTests="true"
+         beStrictAboutOutputDuringTests="false"
          beStrictAboutChangesToGlobalState="true"
          checkForUnintentionallyCoveredCode="false">
   <php>
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);
