diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index cafae4a4a..4b27a84d7 100644 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -421,4 +421,8 @@ function phpServe() : void }); } -\phpServe(); +try { + \phpServe(); +} catch(Throwable $t) { + echo $t->getMessage(); +} \ No newline at end of file