Skip to main content

How to configure your project

Fine-tune Aucert's test generation and execution by editing aucert.config.yaml.

Prerequisites

  • Aucert CLI installed
  • aucert init already 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