> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spurtest.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Managing Overview

> Understand how tests are organized in Spur and the tools available to manage them.

## Overview

Spur organizes your tests in a hierarchy designed for clarity and scalability. Each layer gives you control over how tests are grouped, configured, and run.

## Organization

Tests in Spur are structured from broad containers down to individual flows:

<CardGroup cols={1}>
  <Card icon="folder" href="/managing-tests/folders" title="Folders">
    Top-level containers for grouping related suites by product area, team, or domain.
  </Card>

  <Card icon="layer-group" href="/managing-tests/suite" title="Test Suites">
    Collections of related tests that share common configurations like environment, viewport, and browser. Suites are the core building block of your testing structure.
  </Card>

  <Card icon="list-check" href="/managing-tests/test-plans/test-plans" title="Test Plans">
    Coordinate multiple suites into a single run across different environments and viewports. Test plans are the recommended way to execute and review your tests.
  </Card>

  <Card icon="vial" href="/getting-started/first-test" title="Tests">
    Individual user flows or scenarios. Tests can include [scenario tables](/authoring-tests/scenarios/scenario-tables) for parameterized testing and [dependencies](/authoring-tests/dependencies) for managing shared state.
  </Card>
</CardGroup>

## Tools

<CardGroup cols={2}>
  <Card icon="page" href="/managing-tests/drafts" title="Drafts">
    Mark tests as work-in-progress while you build and refine them. Drafts are excluded from active runs.
  </Card>

  <Card icon="clock" href="/managing-tests/snooze-tests" title="Snoozing">
    Temporarily pause tests from running during deployments, maintenance, or while addressing known issues.
  </Card>
</CardGroup>
