diff --git a/tests/TestCase.php b/tests/TestCase.php index 2932d4a6..f7ce0bd1 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -3,8 +3,18 @@ namespace Tests; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; +use Zoomyboy\LaravelNami\Nami; +use Zoomyboy\LaravelNami\FakesNami; abstract class TestCase extends BaseTestCase { use CreatesApplication; + use FakesNami; + + public function setUp(): void { + parent::setUp(); + + $this->fakeNami(); + } + }