This commit is contained in:
Pig Fang 2018-08-21 11:14:22 +08:00
parent 9b3eff0f3a
commit e66a112713

View File

@ -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',