Skip to content

Commit

Permalink
test: utils uncovered line 보강 (#116)
Browse files Browse the repository at this point in the history
Co-authored-by: potion <[email protected]>
Co-authored-by: 박찬혁 <[email protected]>
  • Loading branch information
3 people committed Jun 5, 2024
1 parent d1e39df commit dae9deb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ describe('hasBatchim', () => {
it('"서" 문자에서 받침이 없으므로 false를 반환한다.', () => {
expect(hasBatchim('서')).toBe(false);
});
it('빈 문자열은 받침이 없으므로 false를 반환한다.', () => {
expect(hasBatchim('')).toBe(false);
});
});
});

Expand Down

0 comments on commit dae9deb

Please sign in to comment.