ortoni-report 1.1.2 → 1.1.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 +37 -0
- package/dist/css/main.css +22445 -0
- package/dist/icon/flaky.png +0 -0
- package/dist/ortoni-report.d.ts +24 -6
- package/dist/ortoni-report.js +49 -37
- package/dist/ortoni-report.mjs +49 -37
- package/dist/report-template.hbs +483 -345
- package/dist/types/reporterConfig.js +2 -0
- package/dist/types/testResults.js +2 -0
- package/dist/utils/modal.js +12 -72
- package/dist/utils/utils.js +44 -0
- package/package.json +47 -49
- package/readme.md +52 -14
- package/dist/css/pico.css +0 -2802
package/changelog.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Change Log:
|
|
2
2
|
|
|
3
|
+
## Version 1.1.4
|
|
4
|
+
|
|
5
|
+
1. **CSS Enhancement**: Updated CSS framework to Bulma for improved visualization and mobile responsiveness.
|
|
6
|
+
|
|
7
|
+
2. **Screenshots**: Implemented screenshot attachment as base64 images for enhanced report details.
|
|
8
|
+
|
|
9
|
+
3. **Toggle Theme Button**: Added a toggle theme button allowing users to switch between dark and light themes for better readability.
|
|
10
|
+
|
|
11
|
+
4. **Project Filtering**: Implemented filtering of tests by projects (e.g., chromium, firefox) to streamline test result views.
|
|
12
|
+
|
|
13
|
+
5. **Configuration Option**: Introduced `OrtoniReportConfig` for customizable report settings:
|
|
14
|
+
```typescript
|
|
15
|
+
import {OrtoniReportConfig} from "ortoni-report";
|
|
16
|
+
let reportConfig: OrtoniReportConfig = {
|
|
17
|
+
projectName: "Ortoni",
|
|
18
|
+
testType: "Regression",
|
|
19
|
+
authorName: "Koushik",
|
|
20
|
+
preferredTheme: "light"
|
|
21
|
+
};
|
|
22
|
+
reporter:[["ortoni-report", reportConfig]],
|
|
23
|
+
```
|
|
24
|
+
6. **Design Improvements**: Made overall design enhancements and added CSS transitions for smoother user interactions.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## Version 1.1.3
|
|
28
|
+
|
|
29
|
+
**New Features:**
|
|
30
|
+
- Added detailed steps to the testDetails section in the HTML report.
|
|
31
|
+
- Introduced a new flaky icon for better visual representation in the report.
|
|
32
|
+
- Display of test steps in the HTML report.
|
|
33
|
+
- Added a filter for retry tests to better categorize and display them.
|
|
34
|
+
|
|
35
|
+
**Improved:**
|
|
36
|
+
- Updated the package dependencies to remove vulnerabilities.
|
|
37
|
+
- Enhanced time formatting to include milliseconds in the duration display.
|
|
38
|
+
- Enhanced the calculation and display of the success rate in the HTML report.
|
|
39
|
+
|
|
3
40
|
## Version 1.1.2
|
|
4
41
|
|
|
5
42
|
**New Features:**
|