Files
saasshop/tests/Feature/AdminDashboardPlatformOrderFunnelMiniBarsShouldRenderTest.php

37 lines
1.1 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminDashboardPlatformOrderFunnelMiniBarsShouldRenderTest 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_platform_order_funnel_mini_bars(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="dashboard-po-funnel-bars"', $html);
$this->assertStringContainsString('data-role="dashboard-po-unpaid-pending-bar"', $html);
$this->assertStringContainsString('data-role="dashboard-po-paid-pending-bar"', $html);
$this->assertStringContainsString('data-role="dashboard-po-syncable-bar"', $html);
}
}