8000 test: add some cases (#5789) · lodash/lodash@c7c70a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit c7c70a7

Browse files
authored
test: add some cases (#5789)
1 parent aa18212 commit c7c70a7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/camelCase.spec.js

+8
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,13 @@ describe('camelCase', () => {
2323
lodashStable.each(['XMLHttpRequest', 'XmlHTTPRequest'], (string) => {
2424
expect(camelCase(string)).toBe('xmlHttpRequest');
2525
});
26+
27+
lodashStable.each(['IDs'], (string) => {
28+
expect(camelCase(string)).toBe('ids');
29+
});
30+
31+
lodashStable.each(['Product XMLs'], (string) => {
32+
expect(camelCase(string)).toBe('productXmls');
33+
});
2634
});
2735
});

0 commit comments

Comments
 (0)
0