test-idea-rewriting

Original🇺🇸 English
Translated

Transform passive 'Verify X' test descriptions into active, observable test actions. Use when test ideas lack specificity, use vague language, or fail quality validation. Converts to action-verb format for clearer, more testable descriptions.

1installs
Added on

NPX Install

npx skill4agent add proffesor-for-testing/agentic-qe test-idea-rewriting

Test Idea Rewriting

<default_to_action> When transforming test ideas:
  1. DETECT all "Verify X" patterns via regex
  2. IDENTIFY appropriate action verb category
  3. TRANSFORM to "[ACTION] [trigger]; [OBSERVE] [result]" pattern
  4. PRESERVE all metadata (IDs, priorities, automation types)
  5. VALIDATE zero "Verify" patterns remain
  6. OUTPUT in same format as input
Success Criteria:
/<td>Verify\s/gi
returns 0 matches </default_to_action>

Quick Reference Card

Transformation Pattern

[ACTION VERB] [specific trigger]; [OUTCOME VERB] [observable result]

Action Verb Quick Reference

CategoryVerbsUse When
InteractionClick, Type, Submit, Navigate, ScrollUI actions
TriggerSend, Inject, Force, Simulate, LoadAPI/system actions
MeasurementMeasure, Time, Count, ProfilePerformance checks
StateSet, Configure, Enable, Disable, ToggleSetup actions
ObservationConfirm, Assert, Check, ObserveOutcome verification

Common Transformations

BeforeAfter
Verify login worksSubmit valid credentials; confirm session created
Verify API returns 200Send GET request; assert 200 response within 500ms
Verify error displaysTrigger validation error; observe error message
Verify data savesInsert record; query database; confirm fields match
Verify performanceExecute 100 requests; measure p99 < 200ms

Transformation Rules

Pattern Detection

regex
/<td>Verify\s/gi     // HTML table cells
/^Verify\s/gim       // Line starts
/"Verify\s[^"]+"/gi  // Quoted strings

Transformation Categories

API/Network Tests

Input PatternOutput Pattern
Verify API returns XSend [METHOD] request; assert [STATUS] response
Verify endpoint accepts YPost [PAYLOAD] to endpoint; confirm [RESPONSE]
Verify webhook firesTrigger [EVENT]; observe webhook received

UI/UX Tests

Input PatternOutput Pattern
Verify button worksClick [BUTTON]; observe [EFFECT]
Verify form submitsFill [FIELDS]; submit form; confirm [RESULT]
Verify navigation worksClick [LINK]; observe [PAGE] loads

Data Tests

Input PatternOutput Pattern
Verify data savesInsert [RECORD]; query; confirm [MATCH]
Verify validation worksEnter [INVALID]; observe [ERROR]
Verify format acceptedSubmit [FORMAT]; confirm [PROCESSED]

Performance Tests

Input PatternOutput Pattern
Verify performance is goodExecute [LOAD]; measure [METRIC] < [THRESHOLD]
Verify scalabilityIncrease [USERS] to [N]; monitor [RESOURCE]
Verify timeout worksInject [DELAY]; confirm timeout after [TIME]

Action Verb Reference

Interaction Verbs

VerbWhen to UseExample
ClickUI element interactionClick "Submit" button
TypeText entryType "user@example.com"
SubmitForm completionSubmit registration form
NavigatePage changesNavigate to /settings
ScrollViewport movementScroll to page bottom
DragDrag-and-dropDrag file to upload zone
HoverMouse positioningHover over tooltip trigger
SelectDropdown/checkboxSelect "Admin" from role dropdown

Trigger Verbs

VerbWhen to UseExample
SendHTTP requestsSend POST to /api/orders
InjectFault injectionInject 500ms latency
ForceState manipulationForce offline mode
SimulateEvent generationSimulate device rotation
LoadResource loadingLoad 50MB test file
ExecuteScript/commandExecute database migration
InvokeFunction/webhookInvoke payment callback
TriggerEvent firingTrigger scheduled job

Measurement Verbs

VerbWhen to UseExample
MeasureQuantitative checkMeasure response time
TimeDuration trackingTime page render
CountQuantity checkCount search results
ProfileResource analysisProfile CPU usage
BenchmarkComparisonBenchmark against v1.0
CaptureState recordingCapture network traffic
MonitorOngoing observationMonitor memory for 5 minutes

Observation Verbs

VerbWhen to UseExample
ConfirmBoolean checkConfirm user is logged in
AssertValue comparisonAssert total equals $99.99
CheckState verificationCheck cart has 3 items
ObserveBehavior watchingObserve spinner appears
ValidateRule complianceValidate email format
ExpectPredicted outcomeExpect redirect to /home
Verify (avoid)Use alternativesUse confirm/assert instead

Quality Validation

Pre-Transform Checks

  1. Count "Verify" patterns in input
  2. Identify context for each pattern
  3. Map to appropriate action verb category

Post-Transform Checks

  1. Regex validation: zero "Verify" matches
  2. Every test idea starts with action verb
  3. Each test includes observable outcome
  4. All metadata preserved unchanged

Validation Regex

javascript
// Must return 0 matches for success
const verifyPattern = /<td>Verify\s/gi;
const matches = content.match(verifyPattern);
if (matches && matches.length > 0) {
  throw new Error(`${matches.length} "Verify" patterns remain`);
}

Agent Integration

typescript
// Single file transformation
await Task("Rewrite Test Ideas", {
  inputFile: "assessment.html",
  outputFile: "assessment-rewritten.html",
  preserveFormatting: true
}, "qe-test-idea-rewriter");

// Batch transformation
await Task("Batch Rewrite", {
  inputDir: "./assessments/",
  outputDir: "./assessments-clean/",
  pattern: "*.html"
}, "qe-test-idea-rewriter");

Memory Namespace

aqe/rewriting/
├── transformations/*  - Transformation logs
├── patterns/*         - Learned patterns
└── vocabulary/*       - Custom verb mappings

Related Skills

  • sfdipot-product-factors - Assessment generation
  • test-design-techniques - Proper test structuring
  • brutal-honesty-review - Quality validation

Remember

Every test idea should be actionable. "Verify X works" tells you nothing about HOW to test. "[Action] X; [Observe] Y" gives clear steps and expected outcomes. Transform passive descriptions into active, observable tests.