ortoni-report 2.0.3 → 2.0.4

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/changelog.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Change Log:
2
2
 
3
+ ## Version 2.0.4
4
+
5
+ ### 🚀 New Features
6
+ - **Tags & Annotations**: Added support for tags and annotations, allowing for more detailed reporting and metadata.
7
+ - **Project charts & summary UI**: Enhanced the user interface of project charts and the summary section for better presentation and usability.
8
+
9
+ ### ✨ Improvements
10
+
11
+ - **Snippets color**: Improved the color scheme of code snippets for better readability.
12
+
13
+ ### 🛠 Fixes
14
+ - **Console warning**: Resolved a console warning issue, improving overall stability.
15
+
16
+ ### Documentation
17
+ - **Removed colors package**: Updated documentation to reflect the removal of the `colors` package.
18
+
19
+
3
20
  ## Version 2.0.3
4
21
 
5
22
  #### 🚀 New Features
@@ -58,6 +58,11 @@ interface OrtoniReportConfig {
58
58
  * @example "playwright-report"
59
59
  */
60
60
  folderPath?: string;
61
+ /**
62
+ * Port to connect
63
+ * @example 3600
64
+ */
65
+ port?: number;
61
66
  }
62
67
 
63
68
  interface Steps {
@@ -66,7 +71,7 @@ interface Steps {
66
71
  location: string;
67
72
  }
68
73
  interface TestResultData {
69
- suiteTags: string[];
74
+ annotations: any;
70
75
  testTags: string[];
71
76
  location: string;
72
77
  retry: string;
@@ -90,6 +95,7 @@ interface TestResultData {
90
95
  }
91
96
 
92
97
  declare class OrtoniReport implements Reporter {
98
+ private ansiToHtml;
93
99
  private projectRoot;
94
100
  private results;
95
101
  private groupedResults;