How to configure your project
Fine-tune Aucert's test generation and execution by editing aucert.config.yaml.
Prerequisites
- Aucert CLI installed
aucert initalready run in your project
Common configurations
Adjust confidence threshold
Lower the threshold to catch more potential issues (more false positives), or raise it for higher precision:
aucert.config.yaml
testing:
confidence_threshold: 0.90 # Higher = fewer results, more precise
Limit test scope
Focus on specific test types:
aucert.config.yaml
testing:
scope:
- navigation # Screen-to-screen flows only
Change output format
aucert.config.yaml
output:
format: junit # junit for CI/CD, json for programmatic access, html for humans
What's next
- CLI commands — Full command reference
- Interpret results — Understand confidence scores