
screenshot 08/2025 example of a test used for teardown

screenshot 08/2025 teardown selection
Viewing teardown results
After your test runs, teardown results appear with a status indicator:- Green checkmark: Teardown succeeded
- Red cross: Teardown failed

screenshot 08/2025 executed teardown
Only the steps of the teardown test itself will run during
cleanup—dependencies of the teardown test are ignored. Teardown tests should
not have their own teardown configured.
Teardown and dependencies
If your test has a dependency that itself has a teardown configured, we will execute it whenever the test case is ran (after). The execution order is:Singular dependency:
- dependency
- test
- teardown of test
- teardown of dependency
Chained dependencies:
Dependencies execute in order, but their teardowns run in reverse:- dependency 1
- dependency 2
- test
- teardown of test
- teardown of dependency 2
- teardown of dependency 1