complexqa_frontend_core 1.13.7 → 1.13.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -38,19 +38,19 @@ export class typeTeamMember extends familyGeneralElement
|
|
|
38
38
|
attribute_name_translate_matrix = {
|
|
39
39
|
en: {
|
|
40
40
|
team_member_id : 'ID',
|
|
41
|
-
team_id : '
|
|
42
|
-
team_member_status: '
|
|
43
|
-
member_role : '
|
|
44
|
-
created_at : '
|
|
45
|
-
updated_at : '
|
|
41
|
+
team_id : 'Team',
|
|
42
|
+
team_member_status: 'Status',
|
|
43
|
+
member_role : 'Role',
|
|
44
|
+
created_at : 'Created at',
|
|
45
|
+
updated_at : 'Updated at',
|
|
46
46
|
},
|
|
47
47
|
ru: {
|
|
48
48
|
team_member_id : 'ID',
|
|
49
|
-
team_id : '
|
|
50
|
-
team_member_status: '
|
|
51
|
-
member_role : '
|
|
52
|
-
created_at : '
|
|
53
|
-
updated_at : '
|
|
49
|
+
team_id : 'Команда',
|
|
50
|
+
team_member_status: 'Статус',
|
|
51
|
+
member_role : 'Золь',
|
|
52
|
+
created_at : 'Создано',
|
|
53
|
+
updated_at : 'Обновлено',
|
|
54
54
|
},
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -14,6 +14,7 @@ export class typeTestCase extends familyTestDocumentation
|
|
|
14
14
|
team_id; // foreign key // secure - access
|
|
15
15
|
assigned_to;
|
|
16
16
|
functional_id; // foreign key
|
|
17
|
+
test_case_status;
|
|
17
18
|
test_case_title; // text 90
|
|
18
19
|
test_case_preconditions; // text (взято у рельсов)
|
|
19
20
|
test_case_mission; // text (взято у рельсов)
|
|
@@ -42,6 +43,7 @@ export class typeTestCase extends familyTestDocumentation
|
|
|
42
43
|
team_id : 'integer | require',
|
|
43
44
|
assigned_to : 'integer | optional',
|
|
44
45
|
functional_id : 'integer | optional',
|
|
46
|
+
test_case_status : 'string | require',
|
|
45
47
|
test_case_title : 'string | optional',
|
|
46
48
|
test_case_descriptions : 'string | optional',
|
|
47
49
|
test_case_time_to_execute: 'integer | optional',
|
|
@@ -58,6 +60,7 @@ export class typeTestCase extends familyTestDocumentation
|
|
|
58
60
|
available_enum_values = {
|
|
59
61
|
test_case_complexity: [ 'LOW', 'NORMAL', 'HIGH' ],
|
|
60
62
|
test_case_importance: [ 'LOW', 'NORMAL', 'HIGH' ],
|
|
63
|
+
test_case_status : [ 'PENDING', 'IN_PROGRESS', 'COMPLETED', 'CLOSED' ],
|
|
61
64
|
};
|
|
62
65
|
|
|
63
66
|
enum_value_translate_matrix = {
|
|
@@ -85,6 +88,20 @@ export class typeTestCase extends familyTestDocumentation
|
|
|
85
88
|
HIGH : 'Высокая',
|
|
86
89
|
},
|
|
87
90
|
},
|
|
91
|
+
test_case_status : {
|
|
92
|
+
en: {
|
|
93
|
+
PENDING : 'Pending',
|
|
94
|
+
IN_PROGRESS: 'In progress',
|
|
95
|
+
COMPLETED : 'Completed',
|
|
96
|
+
CLOSED : 'Closed',
|
|
97
|
+
},
|
|
98
|
+
ru: {
|
|
99
|
+
PENDING : 'Ожидает',
|
|
100
|
+
IN_PROGRESS: 'В работе',
|
|
101
|
+
COMPLETED : 'Завершен',
|
|
102
|
+
CLOSED : 'Закрыт',
|
|
103
|
+
},
|
|
104
|
+
},
|
|
88
105
|
};
|
|
89
106
|
|
|
90
107
|
|
|
@@ -95,6 +112,7 @@ export class typeTestCase extends familyTestDocumentation
|
|
|
95
112
|
project_id : 'Project',
|
|
96
113
|
team_id : 'Team',
|
|
97
114
|
assigned_to : 'Assigned to',
|
|
115
|
+
test_case_status : 'Status',
|
|
98
116
|
test_case_title : 'Title',
|
|
99
117
|
test_case_descriptions : 'Descriptions',
|
|
100
118
|
test_case_time_to_execute: 'Time to execute',
|
|
@@ -109,6 +127,7 @@ export class typeTestCase extends familyTestDocumentation
|
|
|
109
127
|
project_id : 'Проект',
|
|
110
128
|
team_id : 'Команда',
|
|
111
129
|
assigned_to : 'Назначен',
|
|
130
|
+
test_case_status : 'Статус',
|
|
112
131
|
test_case_title : 'Название',
|
|
113
132
|
test_case_descriptions : 'Описание',
|
|
114
133
|
test_case_time_to_execute: 'Время выполнения',
|
|
@@ -83,9 +83,9 @@ export class typeTestRun extends familyTestDocumentation
|
|
|
83
83
|
assigned_to : 'Assigned to',
|
|
84
84
|
test_case_ids : 'Test cases',
|
|
85
85
|
test_run_status : 'Status',
|
|
86
|
-
created_at : '
|
|
87
|
-
updated_at : '
|
|
88
|
-
completed_at : '
|
|
86
|
+
created_at : 'Created at',
|
|
87
|
+
updated_at : 'Updated at',
|
|
88
|
+
completed_at : 'Completed at',
|
|
89
89
|
},
|
|
90
90
|
ru: {
|
|
91
91
|
test_run_id : 'ID',
|
|
@@ -47,6 +47,32 @@ export class typeTestRunResult extends familyTestDocumentation
|
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
|
|
50
|
+
attribute_name_translate_matrix = {
|
|
51
|
+
en: {
|
|
52
|
+
test_result_id : 'ID',
|
|
53
|
+
test_case_id : 'Test case',
|
|
54
|
+
test_run_id : 'Test run',
|
|
55
|
+
test_result_status: 'Status',
|
|
56
|
+
assigned_to : 'Assigned to',
|
|
57
|
+
project_id : 'Project',
|
|
58
|
+
created_at : 'Created at',
|
|
59
|
+
updated_at : 'Updated at',
|
|
60
|
+
completed_at : 'Completed at',
|
|
61
|
+
},
|
|
62
|
+
ru: {
|
|
63
|
+
test_result_id : 'ID',
|
|
64
|
+
test_case_id : 'Тест кейс',
|
|
65
|
+
test_run_id : 'Тестовый прогон',
|
|
66
|
+
test_result_status: 'Статус',
|
|
67
|
+
assigned_to : 'Назначен',
|
|
68
|
+
project_id : 'Проект',
|
|
69
|
+
created_at : 'Создано',
|
|
70
|
+
updated_at : 'Обновлено',
|
|
71
|
+
completed_at : 'Завершено',
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
|
|
50
76
|
status_color = {
|
|
51
77
|
PENDING: '#C4B040',
|
|
52
78
|
PASSED : '#009688',
|