Skip to content

Commit

Permalink
test: add some cases (#5789)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinbekim committed Jan 11, 2024
1 parent aa18212 commit c7c70a7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/camelCase.spec.js
Expand Up @@ -23,5 +23,13 @@ describe('camelCase', () => {
lodashStable.each(['XMLHttpRequest', 'XmlHTTPRequest'], (string) => {
expect(camelCase(string)).toBe('xmlHttpRequest');
});

lodashStable.each(['IDs'], (string) => {
expect(camelCase(string)).toBe('ids');
});

lodashStable.each(['Product XMLs'], (string) => {
expect(camelCase(string)).toBe('productXmls');
});
});
});

0 comments on commit c7c70a7

Please sign in to comment.