ortoni-report 1.0.8 → 1.0.9
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 +26 -0
- package/dist/css/pico.css +2802 -0
- package/dist/icon/32.png +0 -0
- package/dist/ortoni-report.d.ts +8 -1
- package/dist/ortoni-report.js +49 -18
- package/dist/ortoni-report.mjs +49 -18
- package/dist/report-template.hbs +113 -52
- package/package.json +13 -6
- package/readme.md +62 -15
- package/.prettierignore +0 -1
- package/report-template.hbs +0 -251
package/changelog.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Change Log:
|
|
2
|
+
|
|
3
|
+
### Version 1.0.9
|
|
4
|
+
|
|
5
|
+
**Added:**
|
|
6
|
+
1. Added functionality to highlight selected test result in the list
|
|
7
|
+
2. Implemented search functionality to filter test results based on user input
|
|
8
|
+
3. Added reset functionality to display all tests when the search bar is cleared
|
|
9
|
+
4. Custome parameter to the report as Author Name, Project Name & Test type
|
|
10
|
+
5. Added highlight to the selected test name
|
|
11
|
+
6. Added overall execution time to the suite section where it also display #4
|
|
12
|
+
7. Added local CSS and fav icon of letcode.in
|
|
13
|
+
8. Added flaky test (Retry results)
|
|
14
|
+
|
|
15
|
+
**Fixed**
|
|
16
|
+
1. File path based on unix/windows machine [ISSUE#1](https://github.com/ortoniKC/ortoni-report/issues/1)
|
|
17
|
+
2. Log & Error message display where it shows the actual html element
|
|
18
|
+
3. Skip test duration of 0s for the skipper test
|
|
19
|
+
4. Fixed Absolute path of test files
|
|
20
|
+
|
|
21
|
+
**Changed:**
|
|
22
|
+
1. Modified the `displayTestDetails` function to remove highlights when displaying test details
|
|
23
|
+
2. Updated the `searchTests` function to show all tests when the search query is empty
|
|
24
|
+
3. Improved time format to HH:MM:SS
|
|
25
|
+
|
|
26
|
+
These changes improve the user experience by allowing users to easily search for specific tests and providing visual feedback when selecting a test result from the list.
|