We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2669be commit eb61ba1Copy full SHA for eb61ba1
README.md
@@ -31,7 +31,7 @@ Laravel-specific testing helpers and asserts.
31
composer require --dev illuminated/testing-tools
32
```
33
34
-2. Use `Illuminated\Testing\TestingTools` in your `TestCase` class:
+2. Use `Illuminated\Testing\TestingTools` in your `TestCase` class and disable `$mockConsoleOutput`:
35
36
```php
37
use Illuminated\Testing\TestingTools;
@@ -40,6 +40,8 @@ Laravel-specific testing helpers and asserts.
40
{
41
use TestingTools;
42
43
+ public $mockConsoleOutput = false;
44
+
45
// ...
46
}
47
0 commit comments