-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconstants.ts
38 lines (37 loc) · 1.39 KB
/
constants.ts
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
31
32
33
34
35
36
37
38
import animation1 from './animations/RP_Anim_1.json';
import animation2 from './animations/RP_Anim_2.json';
import animation3 from './animations/RP_Anim_3.json';
import animation4 from './animations/RP_Anim_4.json';
import animation5 from './animations/RP_Anim_5.json';
export const SECTIONS_INFO = [
{
title: 'Acquiring test results',
content:
'Coalescing test results across various platforms, frameworks and programming languages and providing actionable insights',
animation: animation1,
},
{
title: 'Predictive AI root cause analysis',
content:
'Leveraging ML algorithms to identify patterns in the test results, detect the root cause of failures, and predict future test results',
animation: animation2,
},
{
title: 'AI-assisted failure triage',
content:
'Assisting the manual review of test logs and new failure patterns for the most recent test executions',
animation: animation3,
},
{
title: 'Automated Quality Gates',
content:
'Facilitating automated decision making for release pipelines based on specified testing criteria and results',
animation: animation4,
},
{
title: 'Dashboards & History',
content:
'Visualizing test results in an easy-to-understand way, allowing to monitor test trends, detect patterns, generate insights and make informed business decisions',
animation: animation5,
},
];