Skip to content

Commit 214f034

Browse files
committed
feat: document tests dashboard
1 parent ecee2c6 commit 214f034

2 files changed

Lines changed: 46 additions & 0 deletions

File tree

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
slug: /tests-dashboard
3+
sidebar_position: 2
4+
description: Explore flaky tests at a glance with sortable metrics, filters, and a dedicated test page.
5+
---
6+
7+
import testsDashboard from "./tests-dashboard.png";
8+
9+
# Tests Dashboard
10+
11+
The Tests dashboard gives you a project-wide view of test stability. It lists all tests sorted by flakiness score so the most flaky tests show up first.
12+
13+
<img
14+
src={testsDashboard}
15+
alt="Tests dashboard showing a list of tests with flakiness metrics"
16+
className="rounded border"
17+
style={{ marginBottom: 20 }}
18+
/>
19+
_A project Tests dashboard with flakiness metrics_
20+
21+
## Open the dashboard
22+
23+
1. Open your project in Argos.
24+
2. Click the **Tests** tab.
25+
26+
## How tests are ranked
27+
28+
Tests are sorted by **flakiness score** (descending). The tests at the top are the most flaky.
29+
30+
## Columns explained
31+
32+
- **Test**: The latest screenshot uploaded for the test, the test name, and the build name.
33+
- **Last change**: The most recent change detected on an auto-approved build during the selected period.
34+
- **Flakiness**: A score that summarizes how flaky a test is based on its stability and consistency.
35+
- **Changes**: The number of changes detected for the test during the selected period.
36+
- **Stability**: The ratio of changes to total reference builds. A lower stability rate means the test is more likely to be flaky.
37+
- **Consistency**: The ratio of one-off changes to total changes. A lower consistency rate means the test is more likely to be flaky.
38+
39+
## Filter and time range
40+
41+
- Filter tests by **build name** to focus on a subset of runs.
42+
- Choose a **time period** to control which changes and scores are included.
43+
44+
## Open a test page
45+
46+
Click any row to open the detailed test page and review history and stability details. See [Flaky Test Detection](/flaky-test-detection) for more information.
373 KB
Loading

0 commit comments

Comments
 (0)