Skip to main content

Organizing Test Suites

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

  1. Go to the "Tests" tab in your project
  2. Click "New Suite"
  3. Enter a name and optional description
  4. Drag and drop tests into the suite, or select them from the list
  5. 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:

  1. Open the test suite
  2. Click "Run All"
  3. 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.