feat(FN-1125): add browser verification template coverage

- Map the workflow template icon key "globe" to the Globe icon in WorkflowStepManager
- Expand WorkflowStepManager tests to cover Browser Verification template rendering, icon display, and add-from-template behavior
- Update AGENTS.md workflow template documentation to include the new Browser Verification template and description
This commit is contained in:
gsxdsm
2026-04-07 22:49:28 -07:00
parent a0cf687a81
commit 69bb0290aa
3 changed files with 91 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ import {
Shield,
Zap,
Eye,
Globe,
LayoutGrid,
BookOpen,
Terminal,
@@ -95,6 +96,8 @@ function getTemplateIcon(iconName: string | undefined) {
return Zap;
case "eye":
return Eye;
case "globe":
return Globe;
default:
return CheckCircle;
}