Best practices for running Bugster during development to validate features and catch issues early
Learn how to integrate Bugster into your daily development workflow for faster feedback, better UX validation, and confident feature delivery.Discover the most effective ways to use Bugster locally while developing, from quick smoke tests to comprehensive UX validation with AI feedback.
Before committing major changes, run a broader test suite:
# Full regression in background (headless)bugster run --headless --parallel 8 --limit 20# All tests with detailed logging for debuggingbugster run --verbose --limit 15# Silent run for clean outputbugster run --silent --parallel 6
When you want to watch tests run and debug issues:
# Watch tests in real browser with detailed logsbugster run --headless --verbose --limit 10# Debug specific test scenariosbugster run --headless --parallel 1 --verbose
You might want to use --headless when first learning, but prefer headless mode for better concentration during development.
Ask Bugster to test something specific using natural language:
# Test a component you just builtbugster run --quick "Test this component I just built"# Test specific functionalitybugster run --quick "Check if the search works with empty results"