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 +17 -0
- package/dist/ortoni-report.d.ts +7 -1
- package/dist/ortoni-report.js +802 -627
- package/dist/ortoni-report.mjs +802 -627
- package/dist/style/main.css +4 -1
- package/dist/views/main.hbs +52 -155
- package/dist/views/project.hbs +132 -0
- package/dist/views/summaryCard.hbs +5 -11
- package/dist/views/testPanel.hbs +2 -2
- package/dist/views/userInfo.hbs +192 -30
- package/package.json +4 -7
- package/readme.md +5 -1
- package/dist/cli/cli.js +0 -49
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
|
package/dist/ortoni-report.d.ts
CHANGED
|
@@ -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
|
-
|
|
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;
|