Added resend invitation endpoint

This commit is contained in:
Constantin Graf
2024-04-21 20:25:33 +02:00
committed by Constantin Graf
parent 9973368156
commit 53ba60bbe5
5 changed files with 91 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ namespace Tests;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Illuminate\Support\Facades\Mail;
use TiMacDonald\Log\LogFake;
abstract class TestCase extends BaseTestCase
@@ -15,6 +16,7 @@ abstract class TestCase extends BaseTestCase
protected function setUp(): void
{
parent::setUp();
Mail::fake();
LogFake::bind();
}