Files
gh-gtmagents-gtm-agents-plu…/skills/workflow-testing/SKILL.md
2025-11-29 18:31:04 +08:00

38 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
name: workflow-testing
description: Use when validating automation builds before launch or after significant
changes.
---
# Workflow Testing & QA Skill
## When to Use
- Any new automation or major revision prior to go-live.
- Regression testing after data, asset, or logic changes.
- Investigating deliverability, conversion, or routing anomalies.
## Framework
1. **Unit Tests** confirm each branch, wait step, and action path with seed contacts.
2. **Integration Tests** verify webhook/API calls, CRM updates, enrichment, scoring.
3. **Content QA** links, tracking, personalization tokens, accessibility, localization.
4. **Compliance** consent, suppression, GDPR/CASL/CCPA rules, regional requirements.
5. **Performance** throttle checks, concurrency, error handling, failover.
## Checklist
- Seed list matrix (personas, stages, regions, consent flags).
- Device/browser testing for email/SMS/push rendering.
- Logging + alerting validation.
- Rollback and kill switches documented.
## Templates
- QA evidence log (screenshot, recipient, status, owner).
- Incident runbook for automation failures.
- Release checklist referencing stakeholders.
## Tips
- Automate regression tests via APIs or synthetic users.
- Store test data separately and purge regularly to avoid reporting noise.
- Use feature flags to stage rollouts before full scale.
---