seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_dashboard_billing_workbench_reconcile_mismatch_and_refund_inconsistent_buttons_should_have_data_role(): void { $this->loginAsPlatformAdmin(); $res = $this->get('/admin'); $res->assertOk(); $html = (string) $res->getContent(); $this->assertStringContainsString('data-role="dashboard-po-quicklink-reconcile-mismatch"', $html); $this->assertStringContainsString('data-role="dashboard-po-quicklink-refund-inconsistent"', $html); } }