Skip to content

Commit

Permalink
test: fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Apr 21, 2024
1 parent fbfaee8 commit 9f3ff58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/__tests__/emoji.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('Emoji test', () => {
});

it('Should not throw errors', () => {
expect(parseEmoji()).not.toThrowError();
expect(parseEmoji('')).not.toThrowError();
expect(() => parseEmoji()).not.toThrowError();
expect(() => parseEmoji('')).not.toThrowError();
});
});

0 comments on commit 9f3ff58

Please sign in to comment.