From 7797575fd36e6cb4819fed66fc81d75bfcf14455 Mon Sep 17 00:00:00 2001 From: NoAvatar Date: Fri, 18 Oct 2024 02:14:03 +1000 Subject: [PATCH] Tests have to seed --- tests/TestCase.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index fe1ffc2..01df0a7 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,9 +2,10 @@ namespace Tests; +use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { - // + protected $seed = true; }