As your test library grows, organizing tests into suites helps keep everything manageable and makes it easy to run targeted batches of tests.
What Is a Test Suite?
A test suite is a collection of related tests grouped together. For example, you might have suites for "Homepage", "Checkout Flow", or "Mobile Responsive".
Creating a Test Suite
- Go to the "Tests" tab in your project
- Click "New Suite"
- Enter a name and optional description
- Drag and drop tests into the suite, or select them from the list
- Click "Save"
Organizing Strategies
Common ways to organize test suites:
- By page/feature: Group tests for each page or feature area
- By priority: Separate critical tests from nice-to-have checks
- By viewport: Desktop, tablet, and mobile suites
- By test type: Visual regression, layout, typography, etc.
Running a Suite
To execute all tests in a suite at once:
- Open the test suite
- Click "Run All"
- Review the aggregated results when complete
Suite Reports
Each suite generates a summary report showing pass/fail rates, common issues, and trends over time. Share these reports with stakeholders to demonstrate design quality progress.