neues Admin UI Layout eingeführt. Alle Tests auf den neusten Stand gebracht.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
namespace Tests\Feature\Auth;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Auth\Notifications\VerifyEmail;
|
||||
use App\Notifications\VerifyEmailNotification;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Support\Facades\Notification;
|
||||
use Tests\TestCase;
|
||||
@@ -24,7 +24,7 @@ class VerificationNotificationTest extends TestCase
|
||||
->post(route('verification.send'))
|
||||
->assertRedirect('/');
|
||||
|
||||
Notification::assertSentTo($user, VerifyEmail::class);
|
||||
Notification::assertSentTo($user, VerifyEmailNotification::class);
|
||||
}
|
||||
|
||||
public function test_does_not_send_verification_notification_if_email_is_verified(): void
|
||||
|
||||
Reference in New Issue
Block a user