> ## 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.

# Snooze Tests

> Snoozing temporarily pauses test execution for a specified duration. This is useful when deploying new features, performing maintenance, or addressing known issues without cluttering your test results.

## How Snoozing Works

Tests can be snoozed for 1 day, 1 week, 1 month, a custom date/time, or indefinitely until manually unsnoozed.

<Warning>
  Snoozed tests and their dependencies will not run until the snooze period expires or is manually removed.
</Warning>

## What Gets Paused When You Snooze

When you snooze a test, the following are also paused:

* **Test execution in all contexts**: The snoozed test will not run in scheduled suites, test plans, or CI pipelines
* **Dependent child tests**: Any tests that depend on the snoozed test as a parent will also be snoozed
* **All automated triggers**: Scheduled runs, CI integrations, and test plan executions skip the snoozed test

<Note>
  Snoozed tests can still be triggered manually if you run that specific test individually (not if you run the full suite).
</Note>

## How to Snooze a Test

<Steps>
  <Step title="Navigate to your Test in the Test Suite list">
    <Frame>
      <img src="https://mintcdn.com/spur/xiqFoyKXwaXlvdEw/images/Screenshot2026-01-29at2.48.52AM.png?fit=max&auto=format&n=xiqFoyKXwaXlvdEw&q=85&s=dfc8f3b2946c57b314d4ed737fa44903" alt="Screenshot2026 01 29at2 48 52AM" title="Screenshot2026 01 29at2 48 52AM" className="mx-auto" width="2096" height="532" data-path="images/Screenshot2026-01-29at2.48.52AM.png" />
    </Frame>
  </Step>

  <Step title="Click the three-dot menu on the test row and select Snooze Test.">
    <Tip>
      You can snooze or unsnooze multiple tests at once by selecting the checkboxes next to tests in your Test Suite.
    </Tip>

    <Frame>
      <img src="https://mintcdn.com/spur/xiqFoyKXwaXlvdEw/images/Screenshot2026-01-29at2.49.51AM.png?fit=max&auto=format&n=xiqFoyKXwaXlvdEw&q=85&s=6c3e019cd8cb511eef33b582886c68ca" alt="Screenshot2026 01 29at2 49 51AM" width="2030" height="522" data-path="images/Screenshot2026-01-29at2.49.51AM.png" />
    </Frame>
  </Step>

  <Step title="Select snooze duration from the dropdown options">
    Duration for setting up snooze for a test:

    * 1 day
    * 1 week
    * 1 month
    * Custom period
    * Until Manual Unsnooze

    <Frame>
      <img src="https://mintcdn.com/spur/xiqFoyKXwaXlvdEw/images/Screenshot2026-01-29at2.50.01AM-1.png?fit=max&auto=format&n=xiqFoyKXwaXlvdEw&q=85&s=7657191cc4807936ab344a2fa5b19ac7" alt="Screenshot2026 01 29at2 50 01AM 1" width="676" height="468" data-path="images/Screenshot2026-01-29at2.50.01AM-1.png" />
    </Frame>
  </Step>

  <Step title="For custom periods, click &#x22;Custom period&#x22; and set your specific date and time, then click Snooze">
    <Frame>
      <img src="https://mintcdn.com/spur/xiqFoyKXwaXlvdEw/images/Screenshot2026-01-29at2.55.01AM.png?fit=max&auto=format&n=xiqFoyKXwaXlvdEw&q=85&s=597d959c5bd6431b6d0b75ce7f0a894a" alt="Screenshot2026 01 29at2 55 01AM" width="962" height="712" data-path="images/Screenshot2026-01-29at2.55.01AM.png" />
    </Frame>
  </Step>
</Steps>

## Unsnooze a Test

<Steps>
  <Step title="Click the three-dot menu on a Snoozed Test and select Unsnooze Test">
    <Frame>
      <img src="https://mintcdn.com/spur/-kGswOS1KFY-omef/images/Screenshot2026-02-11at3.44.33PM.png?fit=max&auto=format&n=-kGswOS1KFY-omef&q=85&s=788844d05d7a4b29b66a40cb9d8771fe" alt="Screenshot 2026 02 11 At 3 44 33 PM" width="462" height="430" data-path="images/Screenshot2026-02-11at3.44.33PM.png" />
    </Frame>
  </Step>

  <Step title="Confirm or edit in the modal">
    You can modify the snooze duration or click Remove Snooze to unsnooze immediately

    <Frame>
      <img src="https://mintcdn.com/spur/xiqFoyKXwaXlvdEw/images/Screenshot2026-01-29at2.58.04AM.png?fit=max&auto=format&n=xiqFoyKXwaXlvdEw&q=85&s=b796d73111cb3c719372187d2316943d" alt="Screenshot2026 01 29at2 58 04AM" width="948" height="678" data-path="images/Screenshot2026-01-29at2.58.04AM.png" />
    </Frame>
  </Step>
</Steps>

## Impact on Dependencies

When you snooze a test that has dependencies:

* Child tests dependent on the snoozed parent test will not run
* The entire dependency chain below the snoozed test is paused
* This prevents failures from tests that depend on setup from the snoozed test

For more details on how dependencies work, see the [Dependencies](/authoring-tests/dependencies) section.

## Use Cases

<AccordionGroup>
  <Accordion title="Deploying New Features" icon="">
    Snooze tests that check features currently being deployed or updated. This prevents false failures during the deployment window.
  </Accordion>

  <Accordion title="Known Issues under Investigation" icon="">
    Temporarily snooze tests failing due to known bugs that are being addressed. This keeps your test results clean while fixes are in progress.
  </Accordion>

  <Accordion title="Maintenance Windows">
    Snooze tests during scheduled maintenance periods when the application or specific features are intentionally unavailable.
  </Accordion>

  <Accordion title="A/B Testing Variations">
    Snooze tests for variations not currently active in your A/B testing setup.
  </Accordion>
</AccordionGroup>
