neues Admin UI Layout eingeführt. Alle Tests auf den neusten Stand gebracht.

This commit is contained in:
Codex Agent
2025-12-30 10:24:06 +01:00
parent 902e78cae9
commit efe2f25b3e
85 changed files with 95235 additions and 19197 deletions

View File

@@ -91,7 +91,6 @@ class DashboardSummaryTest extends TestCase
$this->assertSame(1, Arr::get($payload, 'active_events'));
$this->assertSame(1, Arr::get($payload, 'new_photos'));
$this->assertSame(50, Arr::get($payload, 'task_progress'));
$this->assertSame(5, Arr::get($payload, 'credit_balance'));
$this->assertSame(2, Arr::get($payload, 'upcoming_events'));
$activePackagePayload = Arr::get($payload, 'active_package');

View File

@@ -3,6 +3,7 @@
namespace Tests\Feature\Tenant;
use App\Models\User;
use App\Notifications\VerifyEmailNotification;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Notification;
@@ -48,7 +49,7 @@ class ProfileApiTest extends TenantTestCase
'preferred_locale' => 'en',
]);
Notification::assertSentToTimes($this->tenantUser->fresh(), \Illuminate\Auth\Notifications\VerifyEmail::class, 1);
Notification::assertSentToTimes($this->tenantUser->fresh(), VerifyEmailNotification::class, 1);
}
public function test_profile_update_requires_current_password_for_password_change(): void