forked from ctrf-io/github-test-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
30 lines (30 loc) · 731 Bytes
/
constants.ts
File metadata and controls
30 lines (30 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* Default order for reports when no custom order is specified.
* This determines the sequence in which reports are displayed in the GitHub Actions summary.
*/
export const DEFAULT_REPORT_ORDER: string[] = [
'summary-report',
'summary-delta-report',
'github-report',
'previous-results-report',
'insights-report',
'failed-report',
'fail-rate-report',
'failed-folded-report',
'flaky-report',
'flaky-rate-report',
'skipped-report',
'ai-report',
'ai-summary-report',
'tests-changed-report',
'pull-request-report',
'commit-report',
'slowest-report',
'custom-report',
'community-report',
'test-report',
'test-list-report',
'suite-folded-report',
'suite-list-report',
'file-report'
]