ortoni-report 1.0.8 → 1.1.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.
- package/changelog.md +54 -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 +50 -19
- package/dist/ortoni-report.mjs +50 -19
- package/dist/report-template.hbs +141 -61
- 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,54 @@
|
|
|
1
|
+
# Change Log:
|
|
2
|
+
|
|
3
|
+
### Version 1.1.0
|
|
4
|
+
|
|
5
|
+
## New Features
|
|
6
|
+
- **Search Functionality:**
|
|
7
|
+
- Added a search bar to filter tests by their title.
|
|
8
|
+
- Display the relevant test name, project, and test file name while hiding others during search.
|
|
9
|
+
- Reset search form to show all tests when cleared.
|
|
10
|
+
|
|
11
|
+
## Improvements
|
|
12
|
+
- **Page Zoom:**
|
|
13
|
+
- Set the HTML page zoom to 90% for better display on different screen sizes.
|
|
14
|
+
|
|
15
|
+
## Bug Fixes
|
|
16
|
+
- **Event Listeners:**
|
|
17
|
+
- Fixed an issue where test details would not display when clicking on filtered search results.
|
|
18
|
+
- Ensured event listeners are correctly reattached after filtering search results.
|
|
19
|
+
|
|
20
|
+
## Style Adjustments
|
|
21
|
+
- **CSS Adjustments:**
|
|
22
|
+
- Adjusted body zoom for better overall display: `body { zoom: 0.9; }`
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
### Instructions for Users
|
|
27
|
+
- Use the search bar to quickly find specific tests by their title.
|
|
28
|
+
- Clear the search input to reset the view and display all tests.
|
|
29
|
+
- Note that the page zoom has been set to 90% for optimal display.
|
|
30
|
+
|
|
31
|
+
### Version 1.0.9
|
|
32
|
+
|
|
33
|
+
**Added:**
|
|
34
|
+
1. Added functionality to highlight selected test result in the list
|
|
35
|
+
2. Implemented search functionality to filter test results based on user input
|
|
36
|
+
3. Added reset functionality to display all tests when the search bar is cleared
|
|
37
|
+
4. Custome parameter to the report as Author Name, Project Name & Test type
|
|
38
|
+
5. Added highlight to the selected test name
|
|
39
|
+
6. Added overall execution time to the suite section where it also display #4
|
|
40
|
+
7. Added local CSS and fav icon of letcode.in
|
|
41
|
+
8. Added flaky test (Retry results)
|
|
42
|
+
|
|
43
|
+
**Fixed**
|
|
44
|
+
1. File path based on unix/windows machine [ISSUE#1](https://github.com/ortoniKC/ortoni-report/issues/1)
|
|
45
|
+
2. Log & Error message display where it shows the actual html element
|
|
46
|
+
3. Skip test duration of 0s for the skipper test
|
|
47
|
+
4. Fixed Absolute path of test files
|
|
48
|
+
|
|
49
|
+
**Changed:**
|
|
50
|
+
1. Modified the `displayTestDetails` function to remove highlights when displaying test details
|
|
51
|
+
2. Updated the `searchTests` function to show all tests when the search query is empty
|
|
52
|
+
3. Improved time format to HH:MM:SS
|
|
53
|
+
|
|
54
|
+
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.
|