Skip to content

Commit c2669be

Browse files
committed
Mock console output disabled.
1 parent 9cf0bd1 commit c2669be

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/TestingTools.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ trait TestingTools
3030
use ReflectionAsserts;
3131
use ScheduleAsserts;
3232
use ServiceProviderAsserts;
33+
34+
public $mockConsoleOutput = false;
3335
}

tests/TestingTools/TestCase.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
1212
{
1313
use TestingTools;
1414

15+
public $mockConsoleOutput = false;
16+
1517
public function setUp()
1618
{
1719
parent::setUp();
1820

19-
$this->withoutMockingConsoleOutput();
2021
$this->setUpDatabase();
2122
$this->setUpFactories();
2223
$this->setUpViews();

0 commit comments

Comments
 (0)