Fix test
This commit is contained in:
parent
9b3eff0f3a
commit
e66a112713
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user