it_use_user_token_in_public_api_request test

This commit is contained in:
Peter Papp
2021-07-16 09:26:07 +02:00
parent 8ac41837b2
commit 36cea4853f
20 changed files with 49 additions and 122 deletions

View File

@@ -5,6 +5,7 @@ namespace Tests;
use Carbon\Carbon;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Illuminate\Support\Facades\Notification;
use Illuminate\Support\Facades\Storage;
abstract class TestCase extends BaseTestCase
{
@@ -18,6 +19,6 @@ abstract class TestCase extends BaseTestCase
Notification::fake();
$this->withoutExceptionHandling();
Storage::fake('local');
}
}