Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
91150b2
Add unit tests for utils
MarchalMaxim Aug 24, 2025
a74f9c5
Add unit tests for readEml
MarchalMaxim Aug 24, 2025
10ed11a
Add coverage report to unit tests (c8)
MarchalMaxim Aug 24, 2025
79c4f5d
Add unit tests for some core functions in index.ts
MarchalMaxim Aug 24, 2025
1a34d87
tests for parseRecursive
MarchalMaxim Aug 24, 2025
38e692e
More unit test
MarchalMaxim Aug 24, 2025
6dc2d75
[WIP] more tests
MarchalMaxim Aug 24, 2025
b0a39e3
Finish tests to get line coverage >80% for all source
MarchalMaxim Aug 24, 2025
0311dbc
Add more fixtures, add additional guarding code for safety
MarchalMaxim Aug 24, 2025
c91a931
Revert code change, change fixture to pass
MarchalMaxim Aug 24, 2025
f828440
Add reproduction for reported issue regarding newlines being swallowed.
MarchalMaxim Aug 24, 2025
6be1622
Fix for newlines bug
MarchalMaxim Aug 24, 2025
b98c2e0
Initial plan
Copilot Sep 21, 2025
bd1575c
Initial analysis - plan to add tests for uncovered code areas
Copilot Sep 21, 2025
d819da9
Add 35 new tests targeting uncovered code paths - significant coverag…
Copilot Sep 21, 2025
a070785
Add 5 more targeted tests for final coverage improvement - 40 new tes…
Copilot Sep 21, 2025
624686d
Merge pull request #2 from MarchalMaxim/copilot/fix-92228bce-57f8-49b…
MarchalMaxim Sep 25, 2025
c2c68ac
Initial plan
Copilot Sep 25, 2025
c077ba2
Initial analysis - setup plan for realistic email tests
Copilot Sep 25, 2025
45be1ed
Add comprehensive realistic email tests - 9 new test cases covering r…
Copilot Sep 25, 2025
5e6db52
format & npm ci
MarchalMaxim Oct 9, 2025
73092c9
Merge pull request #3 from MarchalMaxim/copilot/fix-643b8eb2-2f46-4c7…
MarchalMaxim Oct 9, 2025
551df08
Merge pull request #1 from MarchalMaxim/refactor/add-test-suite
MarchalMaxim Oct 9, 2025
ece96a3
log error
MarchalMaxim Oct 9, 2025
ed9a933
Merge pull request #4 from MarchalMaxim/users/mm/log-error
MarchalMaxim Oct 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"include": ["src/**/*.ts"],
"exclude": ["dist/**", "coverage/**", "src/interface.ts"],
"reporter": ["text", "lcov"],
"all": true
}
Loading