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); } }