diff --git a/tests/SetupControllerTest.php b/tests/SetupControllerTest.php index 92f91067..133d70e1 100644 --- a/tests/SetupControllerTest.php +++ b/tests/SetupControllerTest.php @@ -5,6 +5,7 @@ namespace Tests; use Mockery; use Exception; use CreateAllTables; +use AddVerificationToUsersTable; use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Schema; use Illuminate\Support\Facades\Storage; @@ -160,6 +161,9 @@ class SetupControllerTest extends TestCase ->andReturnUsing(function () { $migration = new CreateAllTables(); $migration->up(); + + $migration = new AddVerificationToUsersTable(); + $migration->up(); }); $this->post('/setup/finish', [ 'email' => 'a@b.c',