Files
saasshop/tests/Feature/AdminDashboardCardsHeightSyncRolesShouldRenderTest.php

36 lines
995 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminDashboardCardsHeightSyncRolesShouldRenderTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_dashboard_should_render_height_sync_roles(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="dashboard-card-trend"', $html);
$this->assertStringContainsString('data-role="dashboard-card-billing-workbench"', $html);
$this->assertStringContainsString('data-role="dashboard-card-recent-platform-orders"', $html);
}
}