From c0953be142f0e5ea12c5c1e840584e2f15a5c6dc Mon Sep 17 00:00:00 2001 From: Grant Holle Date: Fri, 15 Dec 2023 12:39:03 +0400 Subject: [PATCH] Fix failing test --- tests/Concerns/TestsConsoleCommands.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Concerns/TestsConsoleCommands.php b/tests/Concerns/TestsConsoleCommands.php index 2a8f230..8fb5cc4 100644 --- a/tests/Concerns/TestsConsoleCommands.php +++ b/tests/Concerns/TestsConsoleCommands.php @@ -40,6 +40,8 @@ protected function laravel() return new $class($arguments['input'], $arguments['output']); }); + $laravel->shouldReceive('runningUnitTests')->andReturn(false); + return $laravel; }