complexqa_frontend_core 1.15.2 → 1.16.2

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.
Files changed (50) hide show
  1. package/package.json +1 -1
  2. package/publish/api/api_abstract_class.js +326 -0
  3. package/publish/api/api_abstract_element_class.js +5 -298
  4. package/publish/api/api_abstract_reference_class.js +56 -0
  5. package/publish/api/context/context_browser_api.js +17 -0
  6. package/publish/api/context/context_deployment_target_api.js +17 -0
  7. package/publish/api/context/context_devices_api.js +17 -0
  8. package/publish/api/context/context_execution_general_api.js +17 -0
  9. package/publish/api/context/context_locale_api.js +17 -0
  10. package/publish/api/context/context_os_api.js +17 -0
  11. package/publish/api/context/context_screen_resolution_api.js +17 -0
  12. package/publish/api/index.js +43 -15
  13. package/publish/index.js +9 -0
  14. package/publish/types/core/0_familyGeneralElement.js +632 -0
  15. package/publish/types/core/1_familyContext.js +144 -0
  16. package/publish/types/core/1_familyTestAutomation.js +20 -0
  17. package/publish/types/core/1_familyTestDocumentation.js +21 -0
  18. package/publish/types/family_context/0_familyContext.js +144 -0
  19. package/publish/types/family_context/typeBrowserContext.js +59 -0
  20. package/publish/types/family_context/typeDeploymentTargetContext.js +98 -0
  21. package/publish/types/family_context/typeDeviceContext.js +86 -0
  22. package/publish/types/family_context/typeExecutionContext.js +148 -0
  23. package/publish/types/family_context/typeLocaleContext.js +75 -0
  24. package/publish/types/family_context/typeOsContext.js +86 -0
  25. package/publish/types/family_context/typeScreenResolutionContext.js +99 -0
  26. package/publish/types/family_elements/typeAutomationTestEnvironment.js +1 -1
  27. package/publish/types/family_elements/typeAutomationTestPlan.js +1 -1
  28. package/publish/types/family_elements/typeAutomationTestStep.js +1 -1
  29. package/publish/types/family_elements/typeAutomationTestStepTarget.js +1 -1
  30. package/publish/types/family_elements/typeBug.js +1 -1
  31. package/publish/types/family_elements/typeFunctional.js +2 -2
  32. package/publish/types/family_elements/typeFunctionalGroup.js +2 -2
  33. package/publish/types/family_elements/typeMilestone.js +1 -1
  34. package/publish/types/family_elements/typePrice.js +1 -1
  35. package/publish/types/family_elements/typeProject.js +1 -1
  36. package/publish/types/family_elements/typeProjectDocument.js +1 -1
  37. package/publish/types/family_elements/typeProjectTestData.js +1 -1
  38. package/publish/types/family_elements/typeProjectUserRole.js +1 -1
  39. package/publish/types/family_elements/typeTask.js +1 -1
  40. package/publish/types/family_elements/typeTeam.js +1 -1
  41. package/publish/types/family_elements/typeTeamMember.js +1 -1
  42. package/publish/types/family_elements/typeTeamUserRole.js +1 -1
  43. package/publish/types/family_elements/typeTestAccount.js +1 -1
  44. package/publish/types/family_elements/typeTestCase.js +3 -3
  45. package/publish/types/family_elements/typeTestCaseStep.js +1 -1
  46. package/publish/types/family_elements/typeTestPlan.js +2 -2
  47. package/publish/types/family_elements/typeTestRun.js +3 -3
  48. package/publish/types/family_elements/typeTestRunResult.js +1 -1
  49. package/publish/types/family_elements/typeTestSuite.js +1 -1
  50. package/publish/types/family_elements/typeUser.js +1 -1
@@ -0,0 +1,148 @@
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
+ import { is_object } from "../../utils/utils.js";
3
+
4
+
5
+ /**
6
+ * Снимок окружения на момент события (баг, результат прогона, автотест).
7
+ *
8
+ * Ссылается на справочники familyContext по FK; context_snapshot — замороженная
9
+ * копия для истории (если справочник переименуют). host/base_url — проектный URL.
10
+ *
11
+ * @version v.0.1 (03/06/2026)
12
+ */
13
+ export class typeExecutionContext extends familyGeneralElement
14
+ {
15
+ execution_context_id;
16
+ project_id;
17
+ team_id;
18
+
19
+ browser_context_id;
20
+ os_context_id;
21
+ screen_resolution_context_id;
22
+ device_context_id;
23
+ locale_context_id;
24
+ deployment_target_context_id;
25
+
26
+ protocol;
27
+ host;
28
+ base_url;
29
+ build_version;
30
+
31
+ context_snapshot;
32
+ custom_field_values;
33
+ test_account_id;
34
+
35
+ created_at;
36
+ updated_at;
37
+
38
+ primary_key = 'execution_context_id';
39
+ api_key = 'execution_context';
40
+
41
+ structure_scheme = {
42
+ execution_context_id : 'integer | require',
43
+ project_id : 'integer | require',
44
+ team_id : 'integer | require',
45
+ browser_context_id : 'integer | optional',
46
+ os_context_id : 'integer | optional',
47
+ screen_resolution_context_id: 'integer | optional',
48
+ device_context_id : 'integer | optional',
49
+ locale_context_id : 'integer | optional',
50
+ deployment_target_context_id: 'integer | optional',
51
+ protocol : 'string | enum | optional',
52
+ host : 'string | max:255 | optional',
53
+ base_url : 'string | max:2048 | optional',
54
+ build_version : 'string | max:128 | optional',
55
+ context_snapshot : 'object | optional',
56
+ custom_field_values : 'object | optional',
57
+ test_account_id : 'integer | optional',
58
+ created_at : 'timestamp | require',
59
+ updated_at : 'timestamp | optional',
60
+ };
61
+
62
+ create_scheme = [
63
+ 'project_id',
64
+ 'team_id',
65
+ ];
66
+
67
+ available_enum_values = {
68
+ protocol: [ 'HTTP', 'HTTPS' ],
69
+ };
70
+
71
+ enum_value_translate_matrix = {
72
+ protocol: {
73
+ en: {
74
+ HTTP : 'HTTP',
75
+ HTTPS: 'HTTPS',
76
+ },
77
+ ru: {
78
+ HTTP : 'HTTP',
79
+ HTTPS: 'HTTPS',
80
+ },
81
+ },
82
+ };
83
+
84
+ attribute_name_translate_matrix = {
85
+ en: {
86
+ execution_context_id : 'ID',
87
+ project_id : 'Project',
88
+ team_id : 'Team',
89
+ browser_context_id : 'Browser',
90
+ os_context_id : 'Operating system',
91
+ screen_resolution_context_id: 'Screen resolution',
92
+ device_context_id : 'Device',
93
+ locale_context_id : 'Locale',
94
+ deployment_target_context_id: 'Deployment target',
95
+ protocol : 'Protocol',
96
+ host : 'Host',
97
+ base_url : 'Base URL',
98
+ build_version : 'Build version',
99
+ context_snapshot : 'Context snapshot',
100
+ custom_field_values : 'Custom fields',
101
+ test_account_id : 'Test account',
102
+ created_at : 'Created at',
103
+ updated_at : 'Updated at',
104
+ },
105
+ ru: {
106
+ execution_context_id : 'ID',
107
+ project_id : 'Проект',
108
+ team_id : 'Команда',
109
+ browser_context_id : 'Браузер',
110
+ os_context_id : 'ОС',
111
+ screen_resolution_context_id: 'Разрешение экрана',
112
+ device_context_id : 'Устройство',
113
+ locale_context_id : 'Локаль',
114
+ deployment_target_context_id: 'Среда развёртывания',
115
+ protocol : 'Протокол',
116
+ host : 'Хост',
117
+ base_url : 'Базовый URL',
118
+ build_version : 'Версия сборки',
119
+ context_snapshot : 'Снимок контекста',
120
+ custom_field_values : 'Доп. поля',
121
+ test_account_id : 'Тестовый аккаунт',
122
+ created_at : 'Создано',
123
+ updated_at : 'Обновлено',
124
+ },
125
+ };
126
+
127
+
128
+ /**
129
+ * @param {object|false|undefined} data
130
+ */
131
+ constructor(data = false)
132
+ {
133
+ super();
134
+
135
+ if (data && is_object(data))
136
+ {
137
+ _.mapObject(data, (value, key) =>
138
+ {
139
+ if (this.hasOwnProperty(key))
140
+ {
141
+ this [ key ] = value;
142
+ }
143
+ });
144
+ }
145
+
146
+ return this;
147
+ }
148
+ }
@@ -0,0 +1,75 @@
1
+ import { familyContext } from "../core/0_familyContext.js";
2
+ import { is_object } from "../../utils/utils.js";
3
+
4
+
5
+ /**
6
+ * Справочник локали / языка интерфейса для прогона.
7
+ *
8
+ * Ориентиры: BCP 47 (en-US, ru-RU), i18n/l10n testing, Accept-Language.
9
+ * locale_code — основной идентификатор; language/region — денормализация для фильтров.
10
+ *
11
+ * @version v.0.1 (03/06/2026)
12
+ */
13
+ export class typeLocaleContext extends familyContext
14
+ {
15
+ locale_context_id;
16
+ locale_code;
17
+ language;
18
+ region;
19
+
20
+ context_axis = 'locale';
21
+
22
+ primary_key = 'locale_context_id';
23
+ api_key = 'locale_context';
24
+
25
+ structure_scheme = {
26
+ locale_context_id: 'integer | require',
27
+ locale_code : 'string | max:35 | require',
28
+ language : 'string | max:16 | optional',
29
+ region : 'string | max:16 | optional',
30
+ ...familyContext.get_catalog_base_structure_scheme(),
31
+ };
32
+
33
+ attribute_name_translate_matrix = (() =>
34
+ {
35
+ let base = familyContext.get_catalog_attribute_name_translate_matrix();
36
+ return {
37
+ en: {
38
+ ...base.en,
39
+ locale_context_id: 'ID',
40
+ locale_code : 'Locale code',
41
+ language : 'Language',
42
+ region : 'Region',
43
+ },
44
+ ru: {
45
+ ...base.ru,
46
+ locale_context_id: 'ID',
47
+ locale_code : 'Код локали',
48
+ language : 'Язык',
49
+ region : 'Регион',
50
+ },
51
+ };
52
+ })();
53
+
54
+
55
+ /**
56
+ * @param {object|false|undefined} data
57
+ */
58
+ constructor(data = false)
59
+ {
60
+ super();
61
+
62
+ if (data && is_object(data))
63
+ {
64
+ _.mapObject(data, (value, key) =>
65
+ {
66
+ if (this.hasOwnProperty(key))
67
+ {
68
+ this [ key ] = value;
69
+ }
70
+ });
71
+ }
72
+
73
+ return this;
74
+ }
75
+ }
@@ -0,0 +1,86 @@
1
+ import { familyContext } from "../core/0_familyContext.js";
2
+ import { is_object } from "../../utils/utils.js";
3
+
4
+
5
+ /**
6
+ * Справочник операционных систем / платформ.
7
+ *
8
+ * Ориентиры: Bugzilla op_sys, Jira «OS», UA-CH platform, mobile OS families.
9
+ * meta: os_family (windows, macos, linux, android, ios), server/desktop/mobile.
10
+ *
11
+ * @version v.0.1 (03/06/2026)
12
+ */
13
+ export class typeOsContext extends familyContext
14
+ {
15
+ os_context_id;
16
+ os_family;
17
+
18
+ context_axis = 'os';
19
+
20
+ primary_key = 'os_context_id';
21
+ api_key = 'os_context';
22
+
23
+ structure_scheme = {
24
+ os_context_id: 'integer | require',
25
+ os_family : 'string | max:32 | optional',
26
+ ...familyContext.get_catalog_base_structure_scheme(),
27
+ };
28
+
29
+ available_enum_values = {
30
+ ...familyContext.get_base_available_enum_values(),
31
+ os_family: [ 'WINDOWS', 'MACOS', 'LINUX', 'ANDROID', 'IOS', 'OTHER' ],
32
+ };
33
+
34
+ enum_value_translate_matrix = {
35
+ ...familyContext.get_base_enum_value_translate_matrix(),
36
+ os_family: {
37
+ en: {
38
+ WINDOWS: 'Windows',
39
+ MACOS : 'macOS',
40
+ LINUX : 'Linux',
41
+ ANDROID: 'Android',
42
+ IOS : 'iOS',
43
+ OTHER : 'Other',
44
+ },
45
+ ru: {
46
+ WINDOWS: 'Windows',
47
+ MACOS : 'macOS',
48
+ LINUX : 'Linux',
49
+ ANDROID: 'Android',
50
+ IOS : 'iOS',
51
+ OTHER : 'Другое',
52
+ },
53
+ },
54
+ };
55
+
56
+ attribute_name_translate_matrix = (() =>
57
+ {
58
+ let base = familyContext.get_catalog_attribute_name_translate_matrix();
59
+ return {
60
+ en: { ...base.en, os_context_id: 'ID', os_family: 'OS family' },
61
+ ru: { ...base.ru, os_context_id: 'ID', os_family: 'Семейство ОС' },
62
+ };
63
+ })();
64
+
65
+
66
+ /**
67
+ * @param {object|false|undefined} data
68
+ */
69
+ constructor(data = false)
70
+ {
71
+ super();
72
+
73
+ if (data && is_object(data))
74
+ {
75
+ _.mapObject(data, (value, key) =>
76
+ {
77
+ if (this.hasOwnProperty(key))
78
+ {
79
+ this [ key ] = value;
80
+ }
81
+ });
82
+ }
83
+
84
+ return this;
85
+ }
86
+ }
@@ -0,0 +1,99 @@
1
+ import { familyContext } from "../core/0_familyContext.js";
2
+ import { is_object } from "../../utils/utils.js";
3
+
4
+
5
+ /**
6
+ * Справочник разрешений / viewport (ширина × высота).
7
+ *
8
+ * Ориентиры: common desktop breakpoints, Playwright device viewport,
9
+ * responsive presets (Bootstrap-like), mobile notch sizes.
10
+ * meta: playwright_device, is_touch, safe_area.
11
+ *
12
+ * @version v.0.1 (03/06/2026)
13
+ */
14
+ export class typeScreenResolutionContext extends familyContext
15
+ {
16
+ screen_resolution_context_id;
17
+ screen_width;
18
+ screen_height;
19
+ device_pixel_ratio;
20
+ screen_orientation;
21
+
22
+ context_axis = 'screen_resolution';
23
+
24
+ primary_key = 'screen_resolution_context_id';
25
+ api_key = 'screen_resolution_context';
26
+
27
+ structure_scheme = {
28
+ screen_resolution_context_id: 'integer | require',
29
+ screen_width : 'integer | require',
30
+ screen_height : 'integer | require',
31
+ device_pixel_ratio : 'number | optional',
32
+ screen_orientation : 'string | enum | optional',
33
+ ...familyContext.get_catalog_base_structure_scheme(),
34
+ };
35
+
36
+ available_enum_values = {
37
+ ...familyContext.get_base_available_enum_values(),
38
+ screen_orientation: [ 'LANDSCAPE', 'PORTRAIT' ],
39
+ };
40
+
41
+ enum_value_translate_matrix = {
42
+ ...familyContext.get_base_enum_value_translate_matrix(),
43
+ screen_orientation: {
44
+ en: {
45
+ LANDSCAPE: 'Landscape',
46
+ PORTRAIT : 'Portrait',
47
+ },
48
+ ru: {
49
+ LANDSCAPE: 'Альбомная',
50
+ PORTRAIT : 'Портретная',
51
+ },
52
+ },
53
+ };
54
+
55
+ attribute_name_translate_matrix = (() =>
56
+ {
57
+ let base = familyContext.get_catalog_attribute_name_translate_matrix();
58
+ return {
59
+ en: {
60
+ ...base.en,
61
+ screen_resolution_context_id: 'ID',
62
+ screen_width : 'Width',
63
+ screen_height : 'Height',
64
+ device_pixel_ratio : 'Device pixel ratio',
65
+ screen_orientation : 'Orientation',
66
+ },
67
+ ru: {
68
+ ...base.ru,
69
+ screen_resolution_context_id: 'ID',
70
+ screen_width : 'Ширина',
71
+ screen_height : 'Высота',
72
+ device_pixel_ratio : 'DPR',
73
+ screen_orientation : 'Ориентация',
74
+ },
75
+ };
76
+ })();
77
+
78
+
79
+ /**
80
+ * @param {object|false|undefined} data
81
+ */
82
+ constructor(data = false)
83
+ {
84
+ super();
85
+
86
+ if (data && is_object(data))
87
+ {
88
+ _.mapObject(data, (value, key) =>
89
+ {
90
+ if (this.hasOwnProperty(key))
91
+ {
92
+ this [ key ] = value;
93
+ }
94
+ });
95
+ }
96
+
97
+ return this;
98
+ }
99
+ }
@@ -1,4 +1,4 @@
1
- import { familyTestAutomation } from "./1_familyTestAutomation.js";
1
+ import { familyTestAutomation } from "../core/1_familyTestAutomation.js";
2
2
  import { is_object } from "../../utils/utils.js";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyTestAutomation } from "./1_familyTestAutomation.js";
1
+ import { familyTestAutomation } from "../core/1_familyTestAutomation.js";
2
2
  import { is_object } from "../../utils/utils.js";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyTestAutomation } from "./1_familyTestAutomation.js";
1
+ import { familyTestAutomation } from "../core/1_familyTestAutomation.js";
2
2
  import { is_object } from "../../utils/utils.js";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyTestAutomation } from "./1_familyTestAutomation.js";
1
+ import { familyTestAutomation } from "../core/1_familyTestAutomation.js";
2
2
  import { is_object } from "../../utils/utils.js";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
1
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
2
2
  import { is_object } from "../../utils/utils.js";
3
3
 
4
4
  /**
@@ -1,6 +1,6 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
3
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
4
4
 
5
5
 
6
6
  /**
@@ -1,6 +1,6 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
3
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
4
4
 
5
5
 
6
6
  /**
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement.js";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils.js";
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { echo, is_object } from "../../utils/utils";
3
3
  import { MockDataTypeProject } from "./mock_data/mock_data_typeProject";
4
4
 
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { echo, is_object } from "../../utils/utils";
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { echo, is_object } from "../../utils/utils";
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4
  /**
@@ -1,5 +1,5 @@
1
1
  import { echo, is_object } from "../../utils/utils";
2
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
2
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
3
3
 
4
4
 
5
5
  /**
@@ -106,8 +106,8 @@ export class typeTestCase extends familyTestDocumentation
106
106
 
107
107
  status_color = {
108
108
  PENDING : '#C4B040',
109
- IN_PROGRESS: '#009688',
110
- COMPLETED : '#FD9A4F',
109
+ IN_PROGRESS: '#FD9A4F',
110
+ COMPLETED : '#009688',
111
111
  CLOSED : '#E0E0E0',
112
112
  };
113
113
 
@@ -1,5 +1,5 @@
1
1
  import { echo, is_object } from "../../utils/utils";
2
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
2
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
3
3
 
4
4
 
5
5
  /**
@@ -1,6 +1,6 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
3
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
4
4
 
5
5
 
6
6
  /**
@@ -1,5 +1,5 @@
1
1
  import { echo, is_object } from "../../utils/utils";
2
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
2
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
3
3
 
4
4
  /**
5
5
  * Коллекция тестов для работы, она же parent для typeTestRunResult
@@ -104,8 +104,8 @@ export class typeTestRun extends familyTestDocumentation
104
104
 
105
105
  status_color = {
106
106
  PENDING : '#C4B040',
107
- IN_PROGRESS: '#009688',
108
- COMPLETED : '#FD9A4F',
107
+ IN_PROGRESS: '#FD9A4F',
108
+ COMPLETED : '#009688',
109
109
  CLOSED : '#E0E0E0',
110
110
  };
111
111
 
@@ -1,5 +1,5 @@
1
1
  import { is_object } from "../../utils/utils";
2
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
2
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
3
3
 
4
4
  /**
5
5
  * 1 результат по каждому тест кейсу
@@ -1,5 +1,5 @@
1
1
  import { echo, is_object } from "../../utils/utils";
2
- import { familyTestDocumentation } from "./1_familyTestDocumentation.js";
2
+ import { familyTestDocumentation } from "../core/1_familyTestDocumentation.js";
3
3
 
4
4
  /**
5
5
  * Структурная коллекция тестов
@@ -1,4 +1,4 @@
1
- import { familyGeneralElement } from "./0_familyGeneralElement";
1
+ import { familyGeneralElement } from "../core/0_familyGeneralElement.js";
2
2
  import { is_object } from "../../utils/utils";
3
3
 
4
4