@allurereport/web-awesome 3.0.0-beta.9 → 3.0.0

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 (279) hide show
  1. package/dist/multi/173.app-9931797d1602fc52db5b.js +1 -0
  2. package/dist/multi/174.app-9931797d1602fc52db5b.js +1 -0
  3. package/dist/multi/252.app-9931797d1602fc52db5b.js +1 -0
  4. package/dist/multi/282.app-9931797d1602fc52db5b.js +1 -0
  5. package/dist/multi/29.app-9931797d1602fc52db5b.js +1 -0
  6. package/dist/multi/416.app-9931797d1602fc52db5b.js +1 -0
  7. package/dist/multi/527.app-9931797d1602fc52db5b.js +1 -0
  8. package/dist/multi/600.app-9931797d1602fc52db5b.js +1 -0
  9. package/dist/multi/605.app-9931797d1602fc52db5b.js +1 -0
  10. package/dist/multi/638.app-9931797d1602fc52db5b.js +1 -0
  11. package/dist/multi/672.app-9931797d1602fc52db5b.js +1 -0
  12. package/dist/multi/686.app-9931797d1602fc52db5b.js +1 -0
  13. package/dist/multi/725.app-9931797d1602fc52db5b.js +1 -0
  14. package/dist/multi/741.app-9931797d1602fc52db5b.js +1 -0
  15. package/dist/multi/755.app-9931797d1602fc52db5b.js +1 -0
  16. package/dist/multi/894.app-9931797d1602fc52db5b.js +1 -0
  17. package/dist/multi/91.app-9931797d1602fc52db5b.js +1 -0
  18. package/dist/multi/943.app-9931797d1602fc52db5b.js +1 -0
  19. package/dist/multi/980.app-9931797d1602fc52db5b.js +1 -0
  20. package/dist/multi/app-9931797d1602fc52db5b.js +2 -0
  21. package/dist/multi/app-9931797d1602fc52db5b.js.LICENSE.txt +10 -0
  22. package/dist/multi/manifest.json +25 -24
  23. package/dist/multi/styles-8fe37354d1c2270c691e.css +48 -0
  24. package/dist/single/app-6199dc1c2fd3bddc2526.js +2 -0
  25. package/dist/single/app-6199dc1c2fd3bddc2526.js.LICENSE.txt +10 -0
  26. package/dist/single/manifest.json +1 -1
  27. package/package.json +29 -17
  28. package/src/assets/scss/day.scss +2 -0
  29. package/src/assets/scss/index.scss +1 -3
  30. package/src/assets/scss/night.scss +2 -0
  31. package/src/assets/scss/palette.scss +391 -391
  32. package/src/assets/scss/theme.scss +292 -79
  33. package/src/components/BaseLayout/index.tsx +10 -32
  34. package/src/components/BaseLayout/styles.scss +14 -4
  35. package/src/components/Charts/index.tsx +245 -0
  36. package/src/components/Charts/styles.scss +27 -0
  37. package/src/components/EnvironmentPicker/index.tsx +60 -0
  38. package/src/components/EnvironmentPicker/styles.scss +9 -0
  39. package/src/components/Footer/FooterLogo.tsx +1 -2
  40. package/src/components/Footer/FooterVersion.tsx +7 -3
  41. package/src/components/Footer/index.tsx +6 -2
  42. package/src/components/Header/CiInfo/index.tsx +67 -0
  43. package/src/components/Header/CiInfo/styles.scss +7 -0
  44. package/src/components/Header/index.tsx +21 -8
  45. package/src/components/Header/styles.scss +9 -1
  46. package/src/components/HeaderControls/index.tsx +20 -0
  47. package/src/components/MainReport/index.tsx +84 -6
  48. package/src/components/MainReport/styles.scss +20 -0
  49. package/src/components/Metadata/index.tsx +6 -4
  50. package/src/components/MetadataButton/index.tsx +14 -6
  51. package/src/components/MetadataButton/styles.scss +3 -0
  52. package/src/components/Modal/index.tsx +15 -167
  53. package/src/components/NavTabs/index.tsx +70 -0
  54. package/src/components/{TestResult/TestResultTabs → NavTabs}/styles.scss +0 -3
  55. package/src/components/Report/index.tsx +7 -0
  56. package/src/components/ReportBody/Filters.tsx +45 -64
  57. package/src/components/ReportBody/index.tsx +26 -15
  58. package/src/components/ReportBody/styles.scss +9 -3
  59. package/src/components/ReportGlobalAttachments/index.tsx +34 -0
  60. package/src/components/ReportGlobalAttachments/styles.scss +11 -0
  61. package/src/components/ReportGlobalErrors/index.tsx +30 -0
  62. package/src/components/ReportGlobalErrors/styles.scss +12 -0
  63. package/src/components/ReportHeader/ReportHeaderLogo.tsx +6 -2
  64. package/src/components/ReportHeader/ReportHeaderPie.tsx +1 -2
  65. package/src/components/ReportHeader/index.tsx +38 -12
  66. package/src/components/ReportHeader/styles.scss +9 -1
  67. package/src/components/ReportMetadata/MetadataSummary.tsx +57 -65
  68. package/src/components/ReportMetadata/MetadataWithIcon.tsx +11 -13
  69. package/src/components/ReportMetadata/index.tsx +50 -3
  70. package/src/components/ReportMetadata/styles.scss +0 -2
  71. package/src/components/ReportQualityGateResults/index.tsx +42 -0
  72. package/src/components/ReportQualityGateResults/styles.scss +44 -0
  73. package/src/components/SectionPicker/index.tsx +55 -0
  74. package/src/components/SectionPicker/styles.scss +5 -0
  75. package/src/components/SectionSwitcher/index.tsx +16 -0
  76. package/src/components/SectionSwitcher/styles.scss +4 -0
  77. package/src/components/SectionTabs/index.tsx +0 -0
  78. package/src/components/SideBySide/index.tsx +52 -0
  79. package/src/components/SideBySide/styles.scss +64 -0
  80. package/src/components/SplitLayout/index.tsx +73 -0
  81. package/src/components/SplitLayout/styles.scss +84 -0
  82. package/src/components/Tabs/index.tsx +2 -2
  83. package/src/components/TestResult/TestStepsEmpty/index.tsx +2 -2
  84. package/src/components/TestResult/TrAttachmentsView/index.tsx +29 -0
  85. package/src/components/TestResult/{TestResultDescription → TrDescription}/index.tsx +5 -5
  86. package/src/components/TestResult/{TestResultDropdown → TrDropdown}/index.tsx +7 -5
  87. package/src/components/TestResult/{TestResultEmpty → TrEmpty}/index.tsx +6 -6
  88. package/src/components/TestResult/TrEnvironmentItem/index.tsx +82 -0
  89. package/src/components/TestResult/TrEnvironmentItem/styles.scss +60 -0
  90. package/src/components/TestResult/TrEnvironmentsView/index.tsx +64 -0
  91. package/src/components/TestResult/TrEnvironmentsView/styles.scss +11 -0
  92. package/src/components/TestResult/TrError/TrDiff.tsx +121 -0
  93. package/src/components/TestResult/TrError/index.tsx +104 -0
  94. package/src/components/TestResult/TrError/styles.scss +223 -0
  95. package/src/components/TestResult/TrHeader/TrBreadcrumbs.tsx +44 -0
  96. package/src/components/TestResult/TrHeader/index.tsx +15 -0
  97. package/src/components/TestResult/{TestResultHeader → TrHeader}/styles.scss +7 -2
  98. package/src/components/TestResult/TrHistory/TrHistoryItem.tsx +94 -0
  99. package/src/components/TestResult/TrHistory/index.tsx +26 -0
  100. package/src/components/TestResult/{TestResultHistory → TrHistory}/styles.scss +2 -1
  101. package/src/components/TestResult/{TestResultInfo/TestResultInfoStatuses.tsx → TrInfo/TrInfoStatuses.tsx} +6 -4
  102. package/src/components/TestResult/TrInfo/index.tsx +99 -0
  103. package/src/components/TestResult/{TestResultInfo → TrInfo}/styles.scss +18 -0
  104. package/src/components/TestResult/{TestResultLinks → TrLinks}/index.tsx +8 -8
  105. package/src/components/TestResult/{TestResultMetadata → TrMetadata}/index.tsx +6 -6
  106. package/src/components/TestResult/{TestResultNavigation → TrNavigation}/index.tsx +7 -9
  107. package/src/components/TestResult/TrOverview.tsx +46 -0
  108. package/src/components/TestResult/{TestResultParameters → TrParameters}/index.tsx +4 -4
  109. package/src/components/TestResult/TrPrevStatuses/index.tsx +63 -0
  110. package/src/components/TestResult/TrPwTraces/PwTrace.tsx +34 -0
  111. package/src/components/TestResult/TrPwTraces/PwTraceButton.tsx +32 -0
  112. package/src/components/TestResult/TrPwTraces/index.tsx +32 -0
  113. package/src/components/TestResult/TrPwTraces/styles.scss +20 -0
  114. package/src/components/TestResult/TrRetriesView/TrRetriesItem.tsx +70 -0
  115. package/src/components/TestResult/TrRetriesView/index.tsx +29 -0
  116. package/src/components/TestResult/{TestResultSetup → TrSetup}/index.tsx +13 -13
  117. package/src/components/TestResult/{TestResultSeverity → TrSeverity}/index.tsx +2 -2
  118. package/src/components/TestResult/{TestResultStatus → TrStatus}/index.tsx +5 -5
  119. package/src/components/TestResult/TrSteps/TrAttachment.tsx +118 -0
  120. package/src/components/TestResult/{TestResultSteps/testResultAttachmentInfo.tsx → TrSteps/TrAttachmentInfo.tsx} +11 -11
  121. package/src/components/TestResult/TrSteps/TrStep.tsx +98 -0
  122. package/src/components/TestResult/TrSteps/TrStepInfo.tsx +90 -0
  123. package/src/components/TestResult/{TestResultSteps → TrSteps}/index.tsx +12 -12
  124. package/src/components/TestResult/{TestResultSteps → TrSteps}/styles.scss +49 -10
  125. package/src/components/TestResult/{TestResultSteps → TrSteps}/wrongAttachment.tsx +1 -1
  126. package/src/components/TestResult/TrTabs/index.tsx +42 -0
  127. package/src/components/TestResult/{TestResultTeardown → TrTeardown}/index.tsx +13 -13
  128. package/src/components/TestResult/index.tsx +54 -38
  129. package/src/components/TestResult/styles.scss +12 -0
  130. package/src/components/Timeline/index.tsx +100 -0
  131. package/src/components/Timeline/styles.scss +45 -0
  132. package/src/components/ToggleLayout/index.tsx +17 -0
  133. package/src/components/Tree/index.tsx +123 -9
  134. package/src/components/Tree/styles.scss +23 -5
  135. package/src/index.html +22 -6
  136. package/src/index.tsx +91 -20
  137. package/src/locales/az.json +376 -0
  138. package/src/locales/de.json +376 -0
  139. package/src/locales/en.json +376 -0
  140. package/src/locales/es.json +376 -0
  141. package/src/locales/fr.json +376 -0
  142. package/src/locales/he.json +376 -0
  143. package/src/locales/hy.json +376 -0
  144. package/src/locales/it.json +376 -0
  145. package/src/locales/ja.json +376 -0
  146. package/src/locales/ka.json +376 -0
  147. package/src/locales/kr.json +376 -0
  148. package/src/locales/nl.json +376 -0
  149. package/src/locales/pl.json +384 -0
  150. package/src/locales/pt.json +376 -0
  151. package/src/locales/ru.json +384 -0
  152. package/src/locales/sv.json +376 -0
  153. package/src/locales/tr.json +376 -0
  154. package/src/locales/ua.json +327 -0
  155. package/src/locales/zh.json +376 -0
  156. package/src/stores/chart.ts +41 -6
  157. package/src/stores/env.ts +88 -0
  158. package/src/stores/envInfo.ts +2 -2
  159. package/src/stores/globals.ts +28 -0
  160. package/src/stores/layout.ts +36 -0
  161. package/src/stores/locale.ts +77 -29
  162. package/src/stores/modal.ts +22 -0
  163. package/src/stores/qualityGate.ts +28 -0
  164. package/src/stores/router.ts +108 -0
  165. package/src/stores/sections.ts +63 -0
  166. package/src/stores/stats.ts +52 -7
  167. package/src/stores/testResults.ts +13 -9
  168. package/src/stores/theme.ts +15 -18
  169. package/src/stores/timeline.ts +39 -0
  170. package/src/stores/tree.ts +61 -22
  171. package/src/stores/variables.ts +40 -0
  172. package/src/styles.scss +66 -0
  173. package/src/utils/time.ts +1 -0
  174. package/src/utils/tree.ts +23 -0
  175. package/src/utils/treeFilters.ts +27 -21
  176. package/test/components/Header/CiInfo.test.tsx +177 -0
  177. package/test/components/Header.test.tsx +122 -0
  178. package/test/utils/treeFilters.test.ts +44 -44
  179. package/tsconfig.json +7 -2
  180. package/tsconfig.node.json +8 -0
  181. package/types.d.ts +43 -24
  182. package/vitest.config.ts +15 -2
  183. package/vitest.setup.ts +1 -0
  184. package/webpack.config.js +35 -5
  185. package/dist/multi/141.app-f32e4213.js +0 -1
  186. package/dist/multi/222.app-f32e4213.js +0 -1
  187. package/dist/multi/335.app-f32e4213.js +0 -1
  188. package/dist/multi/34.app-f32e4213.js +0 -1
  189. package/dist/multi/349.app-f32e4213.js +0 -1
  190. package/dist/multi/378.app-f32e4213.js +0 -1
  191. package/dist/multi/406.app-f32e4213.js +0 -1
  192. package/dist/multi/476.app-f32e4213.js +0 -1
  193. package/dist/multi/53.app-f32e4213.js +0 -1
  194. package/dist/multi/584.app-f32e4213.js +0 -1
  195. package/dist/multi/690.app-f32e4213.js +0 -1
  196. package/dist/multi/747.app-f32e4213.js +0 -1
  197. package/dist/multi/767.app-f32e4213.js +0 -1
  198. package/dist/multi/816.app-f32e4213.js +0 -1
  199. package/dist/multi/83.app-f32e4213.js +0 -1
  200. package/dist/multi/873.app-f32e4213.js +0 -1
  201. package/dist/multi/920.app-f32e4213.js +0 -1
  202. package/dist/multi/991.app-f32e4213.js +0 -1
  203. package/dist/multi/app-f32e4213.js +0 -2
  204. package/dist/multi/app-f32e4213.js.LICENSE.txt +0 -16
  205. package/dist/multi/styles-f32e4213.css +0 -284
  206. package/dist/single/app-7fa8e43f.js +0 -2
  207. package/dist/single/app-7fa8e43f.js.LICENSE.txt +0 -16
  208. package/src/assets/scss/code.scss +0 -71
  209. package/src/assets/scss/typography.scss +0 -218
  210. package/src/components/ArrowButton/index.tsx +0 -36
  211. package/src/components/ArrowButton/styles.scss +0 -35
  212. package/src/components/LanguagePicker/index.tsx +0 -40
  213. package/src/components/Modal/styles.scss +0 -126
  214. package/src/components/ReportLogo/index.tsx +0 -16
  215. package/src/components/ReportLogo/styles.scss +0 -20
  216. package/src/components/ReportLogoFull/index.tsx +0 -20
  217. package/src/components/ReportLogoFull/styles.scss +0 -7
  218. package/src/components/TestResult/TestResultAttachmentsView/index.tsx +0 -27
  219. package/src/components/TestResult/TestResultError/index.tsx +0 -59
  220. package/src/components/TestResult/TestResultError/styles.scss +0 -51
  221. package/src/components/TestResult/TestResultHeader/index.tsx +0 -55
  222. package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +0 -67
  223. package/src/components/TestResult/TestResultHistory/index.tsx +0 -26
  224. package/src/components/TestResult/TestResultInfo/index.tsx +0 -79
  225. package/src/components/TestResult/TestResultOverview.tsx +0 -43
  226. package/src/components/TestResult/TestResultPrevStatuses/index.tsx +0 -49
  227. package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +0 -52
  228. package/src/components/TestResult/TestResultRetriesView/index.tsx +0 -24
  229. package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +0 -12
  230. package/src/components/TestResult/TestResultSteps/attachment.tsx +0 -68
  231. package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +0 -20
  232. package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +0 -32
  233. package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +0 -15
  234. package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +0 -77
  235. package/src/components/TestResult/TestResultSteps/testResultStep.tsx +0 -85
  236. package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +0 -30
  237. package/src/components/TestResult/TestResultTabs/index.tsx +0 -59
  238. package/src/components/ThemeButton/ThemeButton.tsx +0 -20
  239. package/src/components/Tree/Tree.tsx +0 -75
  240. package/src/components/Tree/TreeHeader.tsx +0 -82
  241. package/src/components/Tree/TreeItem.tsx +0 -35
  242. package/src/components/Tree/TreeItemIcon.tsx +0 -32
  243. package/src/i18n/constants.ts +0 -124
  244. package/src/i18n/locales/am.json +0 -120
  245. package/src/i18n/locales/az.json +0 -120
  246. package/src/i18n/locales/de.json +0 -120
  247. package/src/i18n/locales/en.json +0 -121
  248. package/src/i18n/locales/es.json +0 -120
  249. package/src/i18n/locales/fr.json +0 -120
  250. package/src/i18n/locales/he.json +0 -120
  251. package/src/i18n/locales/it.json +0 -120
  252. package/src/i18n/locales/ja.json +0 -120
  253. package/src/i18n/locales/ka.json +0 -120
  254. package/src/i18n/locales/kr.json +0 -120
  255. package/src/i18n/locales/nl.json +0 -120
  256. package/src/i18n/locales/pl.json +0 -118
  257. package/src/i18n/locales/pt.json +0 -120
  258. package/src/i18n/locales/ru.json +0 -118
  259. package/src/i18n/locales/sv.json +0 -120
  260. package/src/i18n/locales/tr.json +0 -120
  261. package/src/i18n/locales/zh.json +0 -120
  262. package/src/utils/attachments.ts +0 -156
  263. package/src/utils/capitalize.ts +0 -6
  264. /package/dist/multi/{JetBrainsMono_vf-b9a9c326..woff → JetBrainsMono_vf.woff} +0 -0
  265. /package/dist/multi/{JetBrainsMono_vf-9e9649b6..woff2 → JetBrainsMono_vf.woff2} +0 -0
  266. /package/dist/multi/{pt-root-ui_vf-22fe60ca..woff → pt-root-ui_vf.woff} +0 -0
  267. /package/dist/multi/{pt-root-ui_vf-9d251e8b..woff2 → pt-root-ui_vf.woff2} +0 -0
  268. /package/src/components/TestResult/{TestResultAttachmentsView → TrAttachmentsView}/styles.scss +0 -0
  269. /package/src/components/TestResult/{TestResultDescription → TrDescription}/styles.scss +0 -0
  270. /package/src/components/TestResult/{TestResultDropdown → TrDropdown}/styles.scss +0 -0
  271. /package/src/components/TestResult/{TestResultEmpty → TrEmpty}/styles.scss +0 -0
  272. /package/src/components/TestResult/{TestResultLinks → TrLinks}/styles.scss +0 -0
  273. /package/src/components/TestResult/{TestResultMetadata → TrMetadata}/styles.scss +0 -0
  274. /package/src/components/TestResult/{TestResultNavigation → TrNavigation}/styles.scss +0 -0
  275. /package/src/components/TestResult/{TestResultParameters → TrParameters}/styles.scss +0 -0
  276. /package/src/components/TestResult/{TestResultPrevStatuses → TrPrevStatuses}/styles.scss +0 -0
  277. /package/src/components/TestResult/{TestResultRetriesView → TrRetriesView}/styles.scss +0 -0
  278. /package/src/components/TestResult/{TestResultSeverity → TrSeverity}/styles.scss +0 -0
  279. /package/src/components/TestResult/{TestResultStatus → TrStatus}/styles.scss +0 -0
@@ -1,6 +1,6 @@
1
1
  import { describe, expect, it } from "vitest";
2
2
  import { createRecursiveTree, filterLeaves } from "../../src/utils/treeFilters.js";
3
- import type { AllureAwesomeTestResult } from "../../types.js";
3
+ import type { AwesomeTestResult } from "../../types.js";
4
4
 
5
5
  describe("utils > treeFilters", () => {
6
6
  describe("filterLeaves", () => {
@@ -11,15 +11,15 @@ describe("utils > treeFilters", () => {
11
11
  a1: {
12
12
  name: "a1",
13
13
  start: baseDate,
14
- } as AllureAwesomeTestResult,
14
+ } as AwesomeTestResult,
15
15
  b2: {
16
16
  name: "b2",
17
17
  start: baseDate + 1000,
18
- } as AllureAwesomeTestResult,
18
+ } as AwesomeTestResult,
19
19
  c3: {
20
20
  name: "c3",
21
21
  start: baseDate + 2000,
22
- } as AllureAwesomeTestResult,
22
+ } as AwesomeTestResult,
23
23
  };
24
24
  const result = filterLeaves(leaves, leavesById, {
25
25
  query: "",
@@ -48,17 +48,17 @@ describe("utils > treeFilters", () => {
48
48
  name: "a1",
49
49
  status: "passed",
50
50
  start: baseDate,
51
- } as AllureAwesomeTestResult,
51
+ } as AwesomeTestResult,
52
52
  b2: {
53
53
  name: "b2",
54
54
  status: "failed",
55
55
  start: baseDate + 1000,
56
- } as AllureAwesomeTestResult,
56
+ } as AwesomeTestResult,
57
57
  c3: {
58
58
  name: "c3",
59
59
  status: "passed",
60
60
  start: baseDate + 2000,
61
- } as AllureAwesomeTestResult,
61
+ } as AwesomeTestResult,
62
62
  };
63
63
  const result = filterLeaves(leaves, leavesById, {
64
64
  query: "",
@@ -83,17 +83,17 @@ describe("utils > treeFilters", () => {
83
83
  name: "a1",
84
84
  start: baseDate,
85
85
  flaky: true,
86
- } as AllureAwesomeTestResult,
86
+ } as AwesomeTestResult,
87
87
  b2: {
88
88
  name: "b2",
89
89
  start: baseDate + 1000,
90
90
  flaky: false,
91
- } as AllureAwesomeTestResult,
91
+ } as AwesomeTestResult,
92
92
  c3: {
93
93
  name: "c3",
94
94
  start: baseDate + 2000,
95
95
  flaky: true,
96
- } as AllureAwesomeTestResult,
96
+ } as AwesomeTestResult,
97
97
  };
98
98
  const result = filterLeaves(leaves, leavesById, {
99
99
  query: "",
@@ -118,17 +118,17 @@ describe("utils > treeFilters", () => {
118
118
  name: "a1",
119
119
  start: baseDate,
120
120
  retry: true,
121
- } as AllureAwesomeTestResult,
121
+ } as AwesomeTestResult,
122
122
  b2: {
123
123
  name: "b2",
124
124
  start: baseDate + 1000,
125
125
  retry: false,
126
- } as AllureAwesomeTestResult,
126
+ } as AwesomeTestResult,
127
127
  c3: {
128
128
  name: "c3",
129
129
  start: baseDate + 2000,
130
130
  retry: false,
131
- } as AllureAwesomeTestResult,
131
+ } as AwesomeTestResult,
132
132
  };
133
133
  const result = filterLeaves(leaves, leavesById, {
134
134
  filter: {
@@ -145,15 +145,15 @@ describe("utils > treeFilters", () => {
145
145
  a1: {
146
146
  name: "a1",
147
147
  duration: 1000,
148
- } as AllureAwesomeTestResult,
148
+ } as AwesomeTestResult,
149
149
  b2: {
150
150
  name: "b2",
151
151
  duration: 2000,
152
- } as AllureAwesomeTestResult,
152
+ } as AwesomeTestResult,
153
153
  c3: {
154
154
  name: "c3",
155
155
  duration: 3000,
156
- } as AllureAwesomeTestResult,
156
+ } as AwesomeTestResult,
157
157
  };
158
158
  const result = filterLeaves(leaves, leavesById, {
159
159
  direction: "asc",
@@ -173,15 +173,15 @@ describe("utils > treeFilters", () => {
173
173
  a1: {
174
174
  name: "a1",
175
175
  duration: 1000,
176
- } as AllureAwesomeTestResult,
176
+ } as AwesomeTestResult,
177
177
  b2: {
178
178
  name: "b2",
179
179
  duration: 2000,
180
- } as AllureAwesomeTestResult,
180
+ } as AwesomeTestResult,
181
181
  c3: {
182
182
  name: "c3",
183
183
  duration: 3000,
184
- } as AllureAwesomeTestResult,
184
+ } as AwesomeTestResult,
185
185
  };
186
186
  const result = filterLeaves(leaves, leavesById, {
187
187
  direction: "desc",
@@ -200,13 +200,13 @@ describe("utils > treeFilters", () => {
200
200
  const leavesById = {
201
201
  a1: {
202
202
  name: "a1",
203
- } as AllureAwesomeTestResult,
203
+ } as AwesomeTestResult,
204
204
  b2: {
205
205
  name: "b2",
206
- } as AllureAwesomeTestResult,
206
+ } as AwesomeTestResult,
207
207
  c3: {
208
208
  name: "c3",
209
- } as AllureAwesomeTestResult,
209
+ } as AwesomeTestResult,
210
210
  };
211
211
  const result = filterLeaves(leaves, leavesById, {
212
212
  direction: "asc",
@@ -225,13 +225,13 @@ describe("utils > treeFilters", () => {
225
225
  const leavesById = {
226
226
  a1: {
227
227
  name: "a1",
228
- } as AllureAwesomeTestResult,
228
+ } as AwesomeTestResult,
229
229
  b2: {
230
230
  name: "b2",
231
- } as AllureAwesomeTestResult,
231
+ } as AwesomeTestResult,
232
232
  c3: {
233
233
  name: "c3",
234
- } as AllureAwesomeTestResult,
234
+ } as AwesomeTestResult,
235
235
  };
236
236
  const result = filterLeaves(leaves, leavesById, {
237
237
  direction: "desc",
@@ -251,23 +251,23 @@ describe("utils > treeFilters", () => {
251
251
  a1: {
252
252
  name: "a1",
253
253
  status: "passed",
254
- } as AllureAwesomeTestResult,
254
+ } as AwesomeTestResult,
255
255
  b2: {
256
256
  name: "b2",
257
257
  status: "failed",
258
- } as AllureAwesomeTestResult,
258
+ } as AwesomeTestResult,
259
259
  c3: {
260
260
  name: "c3",
261
261
  status: "broken",
262
- } as AllureAwesomeTestResult,
262
+ } as AwesomeTestResult,
263
263
  d4: {
264
264
  name: "d4",
265
265
  status: "unknown",
266
- } as AllureAwesomeTestResult,
266
+ } as AwesomeTestResult,
267
267
  e5: {
268
268
  name: "e5",
269
269
  status: "skipped",
270
- } as AllureAwesomeTestResult,
270
+ } as AwesomeTestResult,
271
271
  };
272
272
  const result = filterLeaves(leaves, leavesById, {
273
273
  direction: "asc",
@@ -289,23 +289,23 @@ describe("utils > treeFilters", () => {
289
289
  a1: {
290
290
  name: "a1",
291
291
  status: "passed",
292
- } as AllureAwesomeTestResult,
292
+ } as AwesomeTestResult,
293
293
  b2: {
294
294
  name: "b2",
295
295
  status: "failed",
296
- } as AllureAwesomeTestResult,
296
+ } as AwesomeTestResult,
297
297
  c3: {
298
298
  name: "c3",
299
299
  status: "broken",
300
- } as AllureAwesomeTestResult,
300
+ } as AwesomeTestResult,
301
301
  d4: {
302
302
  name: "d4",
303
303
  status: "unknown",
304
- } as AllureAwesomeTestResult,
304
+ } as AwesomeTestResult,
305
305
  e5: {
306
306
  name: "e5",
307
307
  status: "skipped",
308
- } as AllureAwesomeTestResult,
308
+ } as AwesomeTestResult,
309
309
  };
310
310
  const result = filterLeaves(leaves, leavesById, {
311
311
  direction: "desc",
@@ -329,17 +329,17 @@ describe("utils > treeFilters", () => {
329
329
  name: "a1",
330
330
  start: baseDate + 2000,
331
331
  groupOrder: 3,
332
- } as AllureAwesomeTestResult,
332
+ } as AwesomeTestResult,
333
333
  b2: {
334
334
  name: "b2",
335
335
  start: baseDate + 1000,
336
336
  groupOrder: 2,
337
- } as AllureAwesomeTestResult,
337
+ } as AwesomeTestResult,
338
338
  c3: {
339
339
  name: "c3",
340
340
  start: baseDate,
341
341
  groupOrder: 1,
342
- } as AllureAwesomeTestResult,
342
+ } as AwesomeTestResult,
343
343
  };
344
344
  const result = filterLeaves(leaves, leavesById, {
345
345
  direction: "asc",
@@ -361,17 +361,17 @@ describe("utils > treeFilters", () => {
361
361
  name: "a1",
362
362
  start: baseDate + 2000,
363
363
  groupOrder: 3,
364
- } as AllureAwesomeTestResult,
364
+ } as AwesomeTestResult,
365
365
  b2: {
366
366
  name: "b2",
367
367
  start: baseDate + 1000,
368
368
  groupOrder: 2,
369
- } as AllureAwesomeTestResult,
369
+ } as AwesomeTestResult,
370
370
  c3: {
371
371
  name: "c3",
372
372
  start: baseDate,
373
373
  groupOrder: 1,
374
- } as AllureAwesomeTestResult,
374
+ } as AwesomeTestResult,
375
375
  };
376
376
  const result = filterLeaves(leaves, leavesById, {
377
377
  direction: "desc",
@@ -397,15 +397,15 @@ describe("utils > treeFilters", () => {
397
397
  a1: {
398
398
  name: "a1",
399
399
  start: baseDate,
400
- } as AllureAwesomeTestResult,
400
+ } as AwesomeTestResult,
401
401
  b2: {
402
402
  name: "b2",
403
403
  start: baseDate + 1000,
404
- } as AllureAwesomeTestResult,
404
+ } as AwesomeTestResult,
405
405
  c3: {
406
406
  name: "c3",
407
407
  start: baseDate + 2000,
408
- } as AllureAwesomeTestResult,
408
+ } as AwesomeTestResult,
409
409
  };
410
410
  const groupsById = {
411
411
  a1: {
package/tsconfig.json CHANGED
@@ -17,11 +17,16 @@
17
17
  "noImplicitAny": true,
18
18
  "resolveJsonModule": true,
19
19
  "esModuleInterop": true,
20
- "lib": ["ES2019", "dom"],
20
+ "lib": ["ES2019", "dom", "dom.iterable"],
21
21
  // node types should not be used in web-commons
22
22
  "types": [],
23
23
  "skipLibCheck": true
24
24
  },
25
25
  "include": ["src"],
26
- "exclude": ["node_modules", "dist"]
26
+ "exclude": ["node_modules", "dist"],
27
+ "references": [
28
+ {
29
+ "path": "./tsconfig.node.json"
30
+ }
31
+ ]
27
32
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "include": ["vitest.config.ts", "./src", "./test/**/*.ts", "./test/**/*.tsx"],
4
+ "compilerOptions": {
5
+ "composite": true,
6
+ "types": ["@testing-library/jest-dom"]
7
+ }
8
+ }
package/types.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import type {
2
2
  AttachmentTestStepResult,
3
+ CiDescriptor,
3
4
  DefaultTreeGroup,
4
5
  HistoryTestResult,
5
6
  TestFixtureResult,
@@ -10,30 +11,38 @@ import type {
10
11
  WithChildren,
11
12
  } from "@allurereport/core-api";
12
13
 
13
- export type AllureAwesomeReportOptions = {
14
+ export type Layout = "base" | "split";
15
+
16
+ export type AwesomeReportOptions = {
17
+ allureVersion: string;
14
18
  reportName?: string;
15
19
  logo?: string;
16
- theme?: "light" | "dark";
20
+ theme?: "light" | "dark" | "auto";
17
21
  groupBy?: string[];
18
- reportLanguage?: "en" | "ru";
22
+ reportLanguage?: "en";
19
23
  createdAt: number;
20
24
  reportUuid: string;
25
+ layout?: Layout;
26
+ defaultSection?: string;
27
+ sections?: string[];
28
+ cacheKey: string;
29
+ ci?: CiDescriptor;
21
30
  };
22
31
 
23
- export type AllureAwesomeFixtureResult = Omit<
32
+ export type AwesomeFixtureResult = Omit<
24
33
  TestFixtureResult,
25
34
  "testResultIds" | "start" | "stop" | "sourceMetadata" | "steps"
26
35
  > & {
27
- steps: AllureAwesomeTestStepResult[];
36
+ steps: AwesomeTestStepResult[];
28
37
  };
29
38
 
30
- export type AllureAwesomeStatus = TestStatus | "total";
39
+ export type AwesomeStatus = TestStatus | "total";
31
40
 
32
- export type AllureAwesomeTestStepResult = TestStepResult;
41
+ export type AwesomeTestStepResult = TestStepResult;
33
42
 
34
- type AllureAwesomeBreadcrumbItem = string[] | string[][];
43
+ type AwesomeBreadcrumbItem = string[] | string[][];
35
44
 
36
- export interface AllureAwesomeCategory {
45
+ export interface AwesomeCategory {
37
46
  name: string;
38
47
  description?: string;
39
48
  descriptionHtml?: string;
@@ -42,7 +51,8 @@ export interface AllureAwesomeCategory {
42
51
  matchedStatuses?: TestStatus[];
43
52
  flaky?: boolean;
44
53
  }
45
- export type AllureAwesomeTestResult = Omit<
54
+
55
+ export type AwesomeTestResult = Omit<
46
56
  TestResult,
47
57
  | "runSelector"
48
58
  | "sourceMetadata"
@@ -51,37 +61,46 @@ export type AllureAwesomeTestResult = Omit<
51
61
  | "precondition"
52
62
  | "preconditionHtml"
53
63
  | "steps"
64
+ | "environment"
54
65
  > & {
55
- setup: AllureAwesomeFixtureResult[];
56
- teardown: AllureAwesomeFixtureResult[];
57
- steps: AllureAwesomeTestStepResult[];
66
+ setup: AwesomeFixtureResult[];
67
+ teardown: AwesomeFixtureResult[];
68
+ steps: AwesomeTestStepResult[];
58
69
  history: HistoryTestResult[];
59
70
  retries?: TestResult[];
71
+ retriesCount?: number;
60
72
  groupedLabels: Record<string, string[]>;
61
73
  attachments?: AttachmentTestStepResult[];
62
- breadcrumbs: AllureAwesomeBreadcrumbItem[];
74
+ breadcrumbs: AwesomeBreadcrumbItem[];
63
75
  order?: number;
64
76
  groupOrder?: number;
65
77
  retry: boolean;
66
- categories?: AllureAwesomeCategory[];
78
+ categories?: AwesomeCategory[];
79
+ environment?: string | "default";
67
80
  };
68
81
 
69
- export type AllureAwesomeTreeLeaf = Pick<
70
- AllureAwesomeTestResult,
71
- "duration" | "name" | "start" | "status" | "groupOrder" | "flaky" | "retry"
82
+ export type AwesomeTreeLeaf = Pick<
83
+ AwesomeTestResult,
84
+ "duration" | "name" | "start" | "status" | "groupOrder" | "flaky" | "transition" | "retry" | "retriesCount"
72
85
  > & {
73
86
  nodeId: string;
87
+ transitionTooltip?: string;
74
88
  };
75
89
 
76
- export type AllureAwesomeTreeGroup = WithChildren & DefaultTreeGroup & { nodeId: string };
77
-
78
- export type AllureAwesomeTree = TreeData<AllureAwesomeTreeLeaf, AllureAwesomeTreeGroup>;
90
+ export type AwesomeTreeGroup = WithChildren & DefaultTreeGroup & { nodeId: string };
79
91
 
92
+ export type AwesomeTree = TreeData<AwesomeTreeLeaf, AwesomeTreeGroup>;
80
93
  /**
81
94
  * Tree which contains tree leaves instead of their IDs and recursive trees structure instead of groups
82
95
  */
83
- export type AllureAwesomeRecursiveTree = DefaultTreeGroup & {
96
+ export type AwesomeRecursiveTree = DefaultTreeGroup & {
84
97
  nodeId: string;
85
- leaves: AllureAwesomeTreeLeaf[];
86
- trees: AllureAwesomeRecursiveTree[];
98
+ leaves: AwesomeTreeLeaf[];
99
+ trees: AwesomeRecursiveTree[];
100
+ };
101
+
102
+ // TODO: maybe it should call `TestCase` instead of Group
103
+ // TODO: add worst status
104
+ export type AwesomeTestResultGroup = Pick<AwesomeTestResult, "name" | "fullName" | "groupOrder"> & {
105
+ testResults: AwesomeTestResult[];
87
106
  };
package/vitest.config.ts CHANGED
@@ -1,12 +1,25 @@
1
1
  import { createRequire } from "node:module";
2
2
  import { defineConfig } from "vitest/config";
3
+ import { resolve } from "path";
4
+ import { preact } from "@preact/preset-vite";
3
5
 
4
6
  const require = createRequire(import.meta.url);
5
7
 
6
8
  export default defineConfig({
9
+ plugins: [preact()],
10
+ resolve: {
11
+ alias: {
12
+ "@": resolve(__dirname, "./src"),
13
+ },
14
+ },
7
15
  test: {
8
- include: ["./test/**/*.test.ts"],
9
- setupFiles: [require.resolve("allure-vitest/setup")],
16
+ environment: "jsdom",
17
+ include: ["./test/**/*.test.{ts,tsx}"],
18
+ globals: true,
19
+ setupFiles: [
20
+ require.resolve("allure-vitest/setup"),
21
+ "./vitest.setup.ts",
22
+ ],
10
23
  reporters: [
11
24
  "default",
12
25
  [
@@ -0,0 +1 @@
1
+ import "@testing-library/jest-dom/vitest";
package/webpack.config.js CHANGED
@@ -1,26 +1,43 @@
1
+ import ForkTsCheckerPlugin from "fork-ts-checker-webpack-plugin";
1
2
  import HtmlWebpackPlugin from "html-webpack-plugin";
2
3
  import MiniCssExtractPlugin from "mini-css-extract-plugin";
3
4
  import { dirname, join } from "node:path";
4
5
  import { env } from "node:process";
5
6
  import { fileURLToPath } from "node:url";
6
7
  import SpriteLoaderPlugin from "svg-sprite-loader/plugin.js";
8
+ import TerserPlugin from "terser-webpack-plugin";
7
9
  import webpack from "webpack";
8
10
  import { WebpackManifestPlugin } from "webpack-manifest-plugin";
9
- import ForkTsCheckerPlugin from "fork-ts-checker-webpack-plugin";
10
11
 
11
12
  const { SINGLE_FILE_MODE } = env;
12
13
  const baseDir = dirname(fileURLToPath(import.meta.url));
13
14
 
14
15
  export default (env, argv) => {
15
16
  const devMode = argv?.mode === "development";
17
+ /**
18
+ * @type {import("webpack").Configuration}
19
+ */
16
20
  const config = {
17
21
  entry: "./src/index.tsx",
18
22
  output: {
19
23
  path: join(baseDir, SINGLE_FILE_MODE ? "dist/single" : "dist/multi"),
20
- filename: devMode ? "app.js" : "app-[hash:8].js",
21
- assetModuleFilename: devMode ? `[name].[ext]` : `[name]-[hash:8].[ext]`,
24
+ filename: devMode ? "app.js" : "app-[fullhash].js",
25
+ assetModuleFilename: "[name][ext]",
26
+ },
27
+ devtool: devMode ? "eval-source-map" : false,
28
+ optimization: {
29
+ minimize: !devMode,
30
+ minimizer: [
31
+ new TerserPlugin({
32
+ terserOptions: {
33
+ compress: {
34
+ drop_console: false,
35
+ drop_debugger: false,
36
+ },
37
+ },
38
+ }),
39
+ ],
22
40
  },
23
- devtool: devMode ? "inline-source-map" : false,
24
41
  module: {
25
42
  rules: [
26
43
  {
@@ -74,7 +91,7 @@ export default (env, argv) => {
74
91
  DEVELOPMENT: devMode,
75
92
  }),
76
93
  new MiniCssExtractPlugin({
77
- filename: devMode ? "styles.css" : "styles-[hash:8].css",
94
+ filename: devMode ? "styles.css" : "styles-[contenthash].css",
78
95
  }),
79
96
  new SpriteLoaderPlugin(),
80
97
  new WebpackManifestPlugin({
@@ -90,8 +107,21 @@ export default (env, argv) => {
90
107
  "react-dom": "@preact/compat",
91
108
  },
92
109
  },
110
+ externals: {
111
+ // Some packages use crypto from node:crypto, but webpack doesn't support it
112
+ // I think this does not end up in a bundle, so it is safe to do this
113
+ "node:crypto": "crypto",
114
+ },
93
115
  };
94
116
 
117
+ if (devMode) {
118
+ // Get and use source maps from dependencies
119
+ config.module.rules.push({
120
+ test: /\.js$/i,
121
+ extractSourceMap: true,
122
+ });
123
+ }
124
+
95
125
  if (SINGLE_FILE_MODE) {
96
126
  config.plugins.push(
97
127
  new webpack.optimize.LimitChunkCountPlugin({
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_allurereport_web_awesome=self.webpackChunk_allurereport_web_awesome||[]).push([[141],{141:function(t){t.exports=JSON.parse('{"statuses":{"passed":"keçdi","failed":"uğursuz","broken":"sınıq","skipped":"keçildi","unknown":"naməlum","total":"cəmi","flakyTests":"etibarsız","newTests":"yeni","retryTests":"təkrar"},"testSummary":{"all":"Bütün testlər","flaky":"Etibarsız testlər","retry":"Təkrar testlər","new":"Yeni testlər"},"tabs":{"total":"Bütün"},"search":{"search":"Axtarış","search-placeholder":"Ad və ya ID"},"filters":{"more-filters":"Daha çox filtr","enable-filter":"\\"{filter}\\" filtrlərini aktiv edin","flaky":"Etibarsız","retry":"Təkrar","new":"Yeni"},"sort-by":{"sort-by-text":"Sıralamaq üzrə:","sort-by-category":"Sıralamaq üzrə","direction-category":"İstiqamət"},"sort-by.values":{"order":"Sıra","alphabet":"Əlifba","duration":"Müddət","status":"Status"},"sort-by.directions":{"order-desc":"Sonuncu – Birinci","order-asc":"Birinci – Sonuncu","order-asc-short":"Birinci","order-desc-short":"Sonuncu","alphabet-asc":"A – Z","alphabet-desc":"Z – A","alphabet-asc-short":"A – Z","alphabet-desc-short":"Z – A","duration-asc":"1 – 9","duration-desc":"9 – 1","duration-asc-short":"1 – 9","duration-desc-short":"9 – 1","status-asc":"Filtr siyahısına uyğun","status-desc":"Tərsinə çevrilmiş","status-asc-short":"Adi","status-desc-short":"Tərs"},"empty":{"no-results":"Nəticə tapılmadı","no-tests-found":"Nəticə tapılmadı","clear-filters":"Filtrləri təmizlə","no-attachments-results":"Əlavə məlumatı mövcud deyil","no-history-results":"Tarixçə məlumatı mövcud deyil","no-retries-results":"Təkrar məlumatı mövcud deyil","no-test-steps-results":"Test addımları haqqında məlumat mövcud deyil","no-test-case-results":"Test halları haqqında nəticələr yoxdur"},"severity":{"blocker":"bloklayıcı","critical":"kritik","normal":"normal","minor":"kiçik","trivial":"əhəmiyyətsiz"},"execution":{"name":"İcra","body":"Test məzmunu","setup":"Hazırlıq","teardown":"Yekunlaşma"},"ui":{"labels":"Etiketlər","metadata":"Metaməlumat","parameters":"Parametrlər","description":"Təsvir","links":"Keçidlər","overview":"Ümumi baxış","history":"Tarixçə","attachments":"Əlavələr","retries":"Təkrarlar","error":"Səhv","goToStep":"Addıma keç","showLess":"Daha az göstər","showMore":"Daha çox göstər","copy":"Kopyala","at":"üçün"},"controls":{"newTabAttachment":"Yeni sekmede aç","nextTR":"Növbəti test nəticəsi","prevTR":"Əvvəlki test nəticəsi","downloadAttachment":"Əlavəni yüklə","backto":"Geri dön","clipboard":"Panoya kopyala","clipboardError":"Səhv. Görünür, bu xüsusiyyət brauzeriniz tərəfindən dəstəklənmir","clipboardSuccess":"Uğurla kopyalandı","collapse":"Daralt","expand":"Genişləndir","fullscreen":"Tam ekran","language":"Dili dəyiş","openInNewTab":"Yeni tabda aç"},"errors":{"missedAttachment":"Əlavə tapılmadı"}}')}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_allurereport_web_awesome=self.webpackChunk_allurereport_web_awesome||[]).push([[222],{222:function(e){e.exports=JSON.parse('{"statuses":{"passed":"réussi","failed":"échoué","broken":"cassé","skipped":"ignoré","unknown":"inconnu","total":"total","flakyTests":"instables","newTests":"nouveaux","retryTests":"réessais"},"testSummary":{"all":"Tous les tests","flaky":"Tests instables","retry":"Tests réessayés","new":"Nouveaux tests"},"tabs":{"total":"Tous"},"search":{"search":"Recherche","search-placeholder":"Nom ou ID"},"filters":{"more-filters":"Plus de filtres","enable-filter":"Activer le filtre \\"{filter}\\"","flaky":"Instables","retry":"Réessais","new":"Nouveaux"},"sort-by":{"sort-by-text":"Trier par :","sort-by-category":"Trier par","direction-category":"Direction"},"sort-by.values":{"order":"Ordre","alphabet":"Alphabétique","duration":"Durée","status":"Statut"},"sort-by.directions":{"order-desc":"Derniers – Premiers","order-asc":"Premiers – Derniers","order-asc-short":"Premiers","order-desc-short":"Derniers","alphabet-asc":"A – Z","alphabet-desc":"Z – A","alphabet-asc-short":"A – Z","alphabet-desc-short":"Z – A","duration-asc":"1 – 9","duration-desc":"9 – 1","duration-asc-short":"1 – 9","duration-desc-short":"9 – 1","status-asc":"Comme dans la liste des filtres","status-desc":"Inversé","status-asc-short":"Normal","status-desc-short":"Inversé"},"empty":{"no-results":"Aucun résultat","no-tests-found":"Aucun résultat trouvé","clear-filters":"Effacer les filtres","no-attachments-results":"Aucune information sur les pièces jointes disponible","no-history-results":"Aucune information sur l\'historique disponible","no-retries-results":"Aucune information sur les réessais disponible","no-test-steps-results":"Aucune information sur les étapes de test disponible","no-test-case-results":"Aucun résultat de cas de test"},"severity":{"blocker":"bloquant","critical":"critique","normal":"normal","minor":"mineur","trivial":"trivial"},"execution":{"name":"Exécution","body":"Corps du test","setup":"Préparation","teardown":"Démontage"},"ui":{"labels":"Étiquettes","metadata":"Métadonnées","parameters":"Paramètres","description":"Description","links":"Liens","overview":"Vue d\'ensemble","history":"Historique","attachments":"Pièces jointes","retries":"Réessais","error":"Erreur","goToStep":"Aller à l\'étape","showLess":"Montrer moins","showMore":"Montrer plus","copy":"Copier","at":"à"},"controls":{"newTabAttachment":"Ouvrir dans un nouvel onglet","nextTR":"Résultat de test suivant","prevTR":"Résultat de test précédent","downloadAttachment":"Télécharger la pièce jointe","backto":"Retour à","clipboard":"Copier dans le presse-papier","clipboardError":"Erreur. Il semble que cette fonctionnalité ne soit pas prise en charge par votre navigateur","clipboardSuccess":"Copié avec succès","collapse":"Réduire","expand":"Agrandir","fullscreen":"Plein écran","language":"Changer la langue","openInNewTab":"Ouvrir dans un nouvel onglet"},"errors":{"missedAttachment":"Pièce jointe non trouvée"}}')}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_allurereport_web_awesome=self.webpackChunk_allurereport_web_awesome||[]).push([[335],{335:function(e){e.exports=JSON.parse('{"statuses":{"passed":"успешный","failed":"неуспешный","broken":"сломанный","skipped":"пропущенный","unknown":"неизвестный","total":"все"},"testSummary":{"all":"Все тесты","flaky":"Flaky тесты","retry":"Повторные тесты","new":"Новые тесты"},"tabs":{"total":"Все"},"search":{"search":"Поиск","search-placeholder":"Название или ID"},"filters":{"more-filters":"Фильтры","enable-filter":"Включить фильтр по \\"{filter}\\"","flaky":"Нестабильные","retry":"Повторенные","new":"Новые"},"sort-by":{"sort-by-text":"Сортировать по:","sort-by-category":"Сортировать по","direction-category":"Направление"},"sort-by.values":{"order":"Порядок","alphabet":"Название","duration":"Длительность","status":"Статус"},"sort-by.directions":{"order-asc":"Поздние – Ранние","order-desc":"Ранние – Поздние","order-asc-short":"Поздние","order-desc-short":"Ранние","alphabet-asc":"Я – А","alphabet-desc":"А – Я","alphabet-asc-short":"Я – А","alphabet-desc-short":"Я – А","duration-asc":"9 – 1","duration-desc":"1 – 9","duration-asc-short":"9 – 1","duration-desc-short":"1 – 9","status-asc":"Инвертировано","status-desc":"Как в списке фильтра","status-asc-short":"Инвертировано","status-desc-short":"По обычному"},"empty":{"no-results":"Нет результатов","no-tests-found":"Результаты не найдены","clear-filters":"Очистить фильтры","no-attachments-results":"Информация о вложениях отсутствует","no-history-results":"Информация об истории отсутствует","no-retries-results":"Информация о перезапусках отсутствует","no-test-steps-results":"Нет информации о шагах тестирования","no-test-case-results":"Нет результатов тест-кейсов"},"severity":{"name":"Важность","blocker":"блокер","critical":"критическая","normal":"обычная","minor":"невысокая","trivial":"минимальная"},"execution":{"body":"Тело теста","name":"Выполнение","setup":"Подготовка","teardown":"Завершение"},"ui":{"labels":"Лейблы","metadata":"Метаданные","parameters":"Параметры","description":"Описание","links":"Ссылки","overview":"Обзор","history":"История","attachments":"Вложения","retries":"Перезапуски","error":"Ошибка","goToStep":"Перейти к шагу","showLess":"Показать меньше","showMore":"Показать больше","copy":"Скопировать","at":"в"},"controls":{"newTabAttachment":"Открыть в новой вкладке","downloadAttachment":"Загрузить вложение","nextTR":"Следующий тест","prevTR":"Предыдущий тест","backto":"Вернуться на","clipboard":"Скопировать в буфер обмена","clipboardError":"Ошибка. Скорее всего ваш браузер не поддерживает данную функциональность","clipboardSuccess":"Значение успешно скопировано","collapse":"Свернуть","expand":"Развернуть","fullscreen":"На весь экран","language":"Сменить язык","openInNewTab":"Открыть в новой вкладке"},"errors":{"missedAttachment":"Вложение не найдено"}}')}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_allurereport_web_awesome=self.webpackChunk_allurereport_web_awesome||[]).push([[34],{34:function(e){e.exports=JSON.parse('{"statuses":{"passed":"aprovado","failed":"falhou","broken":"quebrado","skipped":"ignorado","unknown":"desconhecido","total":"total","flakyTests":"instável","newTests":"novo","retryTests":"repetir"},"testSummary":{"all":"Todos os testes","flaky":"Testes instáveis","retry":"Testes repetidos","new":"Testes novos"},"tabs":{"total":"Tudo"},"search":{"search":"Pesquisar","search-placeholder":"Nome ou ID"},"filters":{"more-filters":"Mais filtros","enable-filter":"Habilitar filtro para \\"{filter}\\"","flaky":"Instável","retry":"Repetir","new":"Novo"},"sort-by":{"sort-by-text":"Ordenar por:","sort-by-category":"Ordenar por","direction-category":"Direção"},"sort-by.values":{"order":"Ordem","alphabet":"Alfabeto","duration":"Duração","status":"Estado"},"sort-by.directions":{"order-desc":"Mais recente – Mais antigo","order-asc":"Mais antigo – Mais recente","order-asc-short":"Antigo","order-desc-short":"Recente","alphabet-asc":"A – Z","alphabet-desc":"Z – A","alphabet-asc-short":"A – Z","alphabet-desc-short":"Z – A","duration-asc":"1 – 9","duration-desc":"9 – 1","duration-asc-short":"1 – 9","duration-desc-short":"9 – 1","status-asc":"Como na lista de filtros","status-desc":"Invertido","status-asc-short":"Regular","status-desc-short":"Invertido"},"empty":{"no-results":"Sem resultados","no-tests-found":"Nenhum resultado encontrado","clear-filters":"Limpar filtros","no-attachments-results":"Nenhuma informação de anexos disponível","no-history-results":"Nenhuma informação de histórico disponível","no-retries-results":"Nenhuma informação de repetições disponível","no-test-steps-results":"Nenhuma informação disponível sobre as etapas do teste","no-test-case-results":"Nenhum resultado de caso de teste"},"severity":{"blocker":"bloqueador","critical":"crítico","normal":"normal","minor":"menor","trivial":"trivial"},"execution":{"name":"Execução","body":"Corpo do teste","setup":"Configuração","teardown":"Desmontagem"},"ui":{"labels":"Etiquetas","metadata":"Metadados","parameters":"Parâmetros","description":"Descrição","links":"Links","overview":"Visão geral","history":"Histórico","attachments":"Anexos","retries":"Repetições","error":"Erro","goToStep":"Ir para o passo","showLess":"Mostrar menos","showMore":"Mostrar mais","copy":"Copiar","at":"em"},"controls":{"newTabAttachment":"Abrir anexo em nova aba","nextTR":"Próximo resultado de teste","prevTR":"Resultado de teste anterior","downloadAttachment":"Baixar anexo","backto":"Voltar para","clipboard":"Copiar para a área de transferência","clipboardError":"Erro. Parece que esta funcionalidade não é suportada pelo seu navegador","clipboardSuccess":"Copiado com sucesso","collapse":"Recolher","expand":"Expandir","fullscreen":"Tela cheia","language":"Alterar idioma","openInNewTab":"Abrir em nova aba"},"errors":{"missedAttachment":"Anexo não encontrado"}}')}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_allurereport_web_awesome=self.webpackChunk_allurereport_web_awesome||[]).push([[349],{349:function(e){e.exports=JSON.parse('{"statuses":{"passed":"עבר","failed":"נכשל","broken":"שבור","skipped":"דלג","unknown":"לא ידוע","total":"סה\\"כ","flakyTests":"לא יציב","newTests":"חדש","retryTests":"ניסיון חוזר"},"testSummary":{"all":"כל הבדיקות","flaky":"בדיקות לא יציבות","retry":"בדיקות חוזרות","new":"בדיקות חדשות"},"tabs":{"total":"הכל"},"search":{"search":"חפש","search-placeholder":"שם או מזהה"},"filters":{"more-filters":"עוד מסננים","enable-filter":"אפשר מסנן \\"{filter}\\"","flaky":"לא יציב","retry":"חוזר","new":"חדש"},"sort-by":{"sort-by-text":"מיין לפי:","sort-by-category":"מיין לפי","direction-category":"כיוון"},"sort-by.values":{"order":"סדר","alphabet":"אלפבית","duration":"משך זמן","status":"סטטוס"},"sort-by.directions":{"order-desc":"מהאחרון – לראשון","order-asc":"מהראשון – לאחרון","order-asc-short":"מהראשון","order-desc-short":"מהאחרון","alphabet-asc":"א – ת","alphabet-desc":"ת – א","alphabet-asc-short":"א – ת","alphabet-desc-short":"ת – א","duration-asc":"1 – 9","duration-desc":"9 – 1","duration-asc-short":"1 – 9","duration-desc-short":"9 – 1","status-asc":"כמו ברשימת המסננים","status-desc":"הפוך","status-asc-short":"רגיל","status-desc-short":"הפוך"},"empty":{"no-results":"אין תוצאות","no-tests-found":"לא נמצאו תוצאות","clear-filters":"נקה מסננים","no-attachments-results":"לא נמצאה מידע על קבצים מצורפים","no-history-results":"לא נמצאה מידע על היסטוריה","no-retries-results":"לא נמצאה מידע על נסיונות חוזרים","no-test-steps-results":"אין מידע על שלבי הבדיקה","no-test-case-results":"אין תוצאות של מקרי בדיקה"},"severity":{"blocker":"חוסם","critical":"קריטי","normal":"רגיל","minor":"קל","trivial":"פעוט"},"execution":{"name":"ביצוע","body":"תוכן הבדיקה","setup":"הכנה","teardown":"סיום"},"ui":{"labels":"תוויות","metadata":"נתונים","parameters":"פרמטרים","description":"תיאור","links":"קישורים","overview":"סקירה כללית","history":"היסטוריה","attachments":"קבצים מצורפים","retries":"נסיונות חוזרים","error":"שגיאה","goToStep":"עבור לשלב","showLess":"הצג פחות","showMore":"הצג עוד","copy":"העתק","at":"ב-"},"controls":{"newTabAttachment":"פתח קובץ מצורף בלשונית חדשה","nextTR":"תוצאת בדיקה הבאה","prevTR":"תוצאת בדיקה קודמת","downloadAttachment":"הורד קובץ מצורף","backto":"חזור ל","clipboard":"העתק ללוח","clipboardError":"לא ניתן להעתיק ללוח. ייתכן שהתכונה לא נתמכת בדפדפן שלך","clipboardSuccess":"הועתק בהצלחה","collapse":"כווץ","expand":"הרחב","fullscreen":"מסך מלא","language":"שנה שפה","openInNewTab":"פתח בכרטיסייה חדשה"},"errors":{"missedAttachment":"הקובץ המצורף לא נמצא"}}')}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_allurereport_web_awesome=self.webpackChunk_allurereport_web_awesome||[]).push([[378],{378:function(e){e.exports=JSON.parse('{"statuses":{"passed":"წარმატებული","failed":"წარუმატებელი","broken":"დამტვრეული","skipped":"გამოტოვებული","unknown":"უცნობი","total":"ჯამი","flakyTests":"არასტაბილური","newTests":"ახალი","retryTests":"ხელახალი ცდა"},"testSummary":{"all":"ყველა ტესტი","flaky":"არასტაბილური ტესტი","retry":"ხელახალი ტესტი","new":"ახალი ტესტი"},"tabs":{"total":"ყველა"},"search":{"search":"ძებნა","search-placeholder":"სახელი ან ID"},"filters":{"more-filters":"დამატებითი ფილტრები","enable-filter":"ჩართეთ ფილტრი \\"{filter}\\"","flaky":"არასტაბილური","retry":"ხელახალი","new":"ახალი"},"sort-by":{"sort-by-text":"დალაგება:","sort-by-category":"დალაგება","direction-category":"მიმართულება"},"sort-by.values":{"order":"შეკვეთა","alphabet":"ანბანი","duration":"ხანგრძლივობა","status":"სტატუსი"},"sort-by.directions":{"order-desc":"ბოლო – პირველი","order-asc":"პირველი – ბოლო","order-asc-short":"პირველი","order-desc-short":"ბოლო","alphabet-asc":"ა – ჰ","alphabet-desc":"ჰ – ა","alphabet-asc-short":"ა – ჰ","alphabet-desc-short":"ჰ – ა","duration-asc":"1 – 9","duration-desc":"9 – 1","duration-asc-short":"1 – 9","duration-desc-short":"9 – 1","status-asc":"როგორც ფილტრის სიაში","status-desc":"შებრუნებული","status-asc-short":"ჩვეულებრივი","status-desc-short":"შებრუნებული"},"empty":{"no-results":"შედეგები არ არის","no-tests-found":"შედეგები არ მოიძებნა","clear-filters":"ფილტრების გასუფთავება","no-attachments-results":"დანართების ინფორმაცია არ არის ხელმისაწვდომი","no-history-results":"ისტორიის ინფორმაცია არ არის ხელმისაწვდომი","no-retries-results":"ხელახალი ცდების ინფორმ���ცია არ არის ხელმისაწვდომი","no-test-steps-results":"ტესტის ნაბიჯების ინფორმაცია ხელმისაწვდომი არ არის","no-test-case-results":"ტესტის შემთხვევის შედეგები არ არის"},"severity":{"blocker":"ბლოკერი","critical":"კრიტიკული","normal":"ჩვეულებრივი","minor":"მნიშვნელობა","trivial":"უმნიშვნელო"},"execution":{"name":"შესრულება","body":"ტესტის შინაარსი","setup":"მომზადება","teardown":"დასრულება"},"ui":{"labels":"ლეიბლები","metadata":"მეტამონაცემები","parameters":"პარამეტრები","description":"აღწერა","links":"ბმულები","overview":"მიმოხილვა","history":"ისტორია","attachments":"დანართები","retries":"ხელახალი ცდები","error":"შეცდომა","goToStep":"გადადით საფეხურზე","showLess":"ნაკლების ჩვენება","showMore":"მეტის ჩვენება","copy":"კოპირება","at":"ზე"},"controls":{"newTabAttachment":"დანართის გახსნა ახალ ჩანართში","nextTR":"შემდეგი ტესტის შედეგი","prevTR":"წინა ტესტის შედეგი","downloadAttachment":"დანართის ჩამოტვირთვა","backto":"უკან დაბრუნება","clipboard":"კოპირება ბუფერში","clipboardError":"ბუფერში კოპირება ვერ მოხერხდა. შესაძლოა, ფუნქცია არ იყოს მხარდაჭერილი თქვენს ბრაუზერში","clipboardSuccess":"წარმატებით დაკოპირდა","collapse":"ჩაკეცვა","expand":"გახსნა","fullscreen":"სრულ ეკრანზე","language":"ენის შეცვლა","openInNewTab":"გახსნა ახალ ჩანართში"},"errors":{"missedAttachment":"დანართი ვერ მოიძებნა"}}')}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_allurereport_web_awesome=self.webpackChunk_allurereport_web_awesome||[]).push([[406],{406:function(e){e.exports=JSON.parse('{"statuses":{"passed":"aprobado","failed":"fallido","broken":"roto","skipped":"omitido","unknown":"desconocido","total":"total","flakyTests":"inestable","newTests":"nuevo","retryTests":"reintento"},"testSummary":{"all":"Todas las pruebas","flaky":"Pruebas inestables","retry":"Pruebas reintentadas","new":"Pruebas nuevas"},"tabs":{"total":"Todo"},"search":{"search":"Buscar","search-placeholder":"Nombre o ID"},"filters":{"more-filters":"Más filtros","enable-filter":"Habilitar filtro para \\"{filter}\\"","flaky":"Inestable","retry":"Reintento","new":"Nuevo"},"sort-by":{"sort-by-text":"Ordenar por:","sort-by-category":"Ordenar por","direction-category":"Dirección"},"sort-by.values":{"order":"Orden","alphabet":"Alfabeto","duration":"Duración","status":"Estado"},"sort-by.directions":{"order-desc":"Más reciente – Más antiguo","order-asc":"Más antiguo – Más reciente","order-asc-short":"Antiguo","order-desc-short":"Reciente","alphabet-asc":"A – Z","alphabet-desc":"Z – A","alphabet-asc-short":"A – Z","alphabet-desc-short":"Z – A","duration-asc":"1 – 9","duration-desc":"9 – 1","duration-asc-short":"1 – 9","duration-desc-short":"9 – 1","status-asc":"Como en la lista de filtros","status-desc":"Invertido","status-asc-short":"Regular","status-desc-short":"Invertido"},"empty":{"no-results":"Sin resultados","no-tests-found":"No se encontraron resultados","clear-filters":"Limpiar filtros","no-attachments-results":"No hay información de adjuntos disponible","no-history-results":"No hay información de historial disponible","no-retries-results":"No hay información de reintentos disponible","no-test-steps-results":"No hay información disponible sobre los pasos de prueba","no-test-case-results":"No hay resultados de casos de prueba"},"severity":{"blocker":"bloqueante","critical":"crítico","normal":"normal","minor":"menor","trivial":"trivial"},"execution":{"name":"Ejecución","body":"Cuerpo de la prueba","setup":"Configuración","teardown":"Desmontaje"},"ui":{"labels":"Etiquetas","metadata":"Metadatos","parameters":"Parámetros","description":"Descripción","links":"Enlaces","overview":"Resumen","history":"Historial","attachments":"Adjuntos","retries":"Reintentos","error":"Error","goToStep":"Ir al paso","showLess":"Mostrar menos","showMore":"Mostrar más","copy":"Copiar","at":"a las"},"controls":{"newTabAttachment":"Abrir adjunto en nueva pestaña","nextTR":"Siguiente resultado de prueba","prevTR":"Resultado de prueba anterior","downloadAttachment":"Descargar adjunto","backto":"Volver a","clipboard":"Copiar al portapapeles","clipboardError":"Error. Parece que esta funcionalidad no está soportada por tu navegador","clipboardSuccess":"Copiado con éxito","collapse":"Colapsar","expand":"Expandir","fullscreen":"Pantalla completa","language":"Cambiar idioma","openInNewTab":"Abrir en nueva pestaña"},"errors":{"missedAttachment":"Adjunto no encontrado"}}')}}]);