mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
test: add some cases (#5789)
This commit is contained in:
@@ -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');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user