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