seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_dashboard_should_render_platform_order_governance_mini_bars(): void { $this->loginAsPlatformAdmin(); $res = $this->get('/admin'); $res->assertOk(); $html = (string) $res->getContent(); $this->assertStringContainsString('data-role="dashboard-po-governance-bars"', $html); $this->assertStringContainsString('data-role="dashboard-po-sync-failed-bar"', $html); $this->assertStringContainsString('data-role="dashboard-po-bmpa-failed-bar"', $html); $this->assertStringContainsString('data-role="dashboard-po-no-receipt-bar"', $html); $this->assertStringContainsString('data-role="dashboard-po-renewal-missing-bar"', $html); $this->assertStringContainsString('data-role="dashboard-po-reconcile-mismatch-bar"', $html); $this->assertStringContainsString('data-role="dashboard-po-refund-inconsistent-bar"', $html); } }