Test discovery and tags
Organize tests with tags and control which flows run using include/exclude filters.
Test discovery via patterns
# config.yaml
appId: com.example.app
flows:
- "*" # Default: Includes all Flows in the root folder only
- "auth/*" # Includes all Flows in the auth subfolder
- "tests/**" # Recursive: Includes all Flows in tests and its subfoldersFilter test via tags
# flows/login_smoke.yaml
appId: com.example.app
tags:
- smoke
- registration
---
- launchApp
# ... rest of the flowTag logic
Command
Result
Why?
Global tag configuration
Example
Next steps
Last updated