complexqa_frontend_core 1.13.1 → 1.13.3
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
|
@@ -16,6 +16,8 @@ export class typeTestAccount extends familyGeneralElement
|
|
|
16
16
|
login;
|
|
17
17
|
password;
|
|
18
18
|
test_account_description;
|
|
19
|
+
created_at;
|
|
20
|
+
updated_at;
|
|
19
21
|
|
|
20
22
|
primary_key = 'test_account_id';
|
|
21
23
|
api_key = 'test_account';
|
|
@@ -28,6 +30,8 @@ export class typeTestAccount extends familyGeneralElement
|
|
|
28
30
|
login : 'string | require',
|
|
29
31
|
password : 'string | optional',
|
|
30
32
|
test_account_description: 'string | optional',
|
|
33
|
+
updated_at : 'timestamp | optional',
|
|
34
|
+
completed_at: 'timestamp | optional',
|
|
31
35
|
};
|
|
32
36
|
|
|
33
37
|
attribute_name_translate_matrix = {
|
|
@@ -102,11 +102,17 @@ export class typeTestRun extends familyTestDocumentation
|
|
|
102
102
|
},
|
|
103
103
|
};
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
status_color = {
|
|
106
|
+
PENDING : '#C4B040',
|
|
107
|
+
IN_PROGRESS: '#009688',
|
|
108
|
+
COMPLETED : '#FD9A4F',
|
|
109
|
+
CLOSED : '#E0E0E0',
|
|
110
|
+
};
|
|
106
111
|
|
|
107
112
|
|
|
108
113
|
/******************************************************************************************/
|
|
109
114
|
/******************************************************************************************/
|
|
115
|
+
|
|
110
116
|
/******************************************************************************************/
|
|
111
117
|
|
|
112
118
|
/**
|
|
@@ -50,10 +50,10 @@ export class typeTestRunResult extends familyTestDocumentation
|
|
|
50
50
|
status_color = {
|
|
51
51
|
PENDING: '#C4B040',
|
|
52
52
|
PASSED : '#009688',
|
|
53
|
-
FAILED : '#
|
|
54
|
-
SKIPPED: '#
|
|
55
|
-
BLOCKED: '#
|
|
56
|
-
RETEST : '#
|
|
53
|
+
FAILED : '#E66565',
|
|
54
|
+
SKIPPED: '#FD9A4F',
|
|
55
|
+
BLOCKED: '#E0E0E0',
|
|
56
|
+
RETEST : '#4D92FA',
|
|
57
57
|
};
|
|
58
58
|
|
|
59
59
|
/**
|