mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
wip: code formatting nits continued
This commit is contained in:
9
test/toLower.spec.js
Normal file
9
test/toLower.spec.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import toLower from '../src/toLower';
|
||||
|
||||
describe('toLower', () => {
|
||||
it('should convert whole string to lower case', () => {
|
||||
expect(toLower('--Foo-Bar--')).toEqual('--foo-bar--');
|
||||
expect(toLower('fooBar')).toEqual('foobar');
|
||||
expect(toLower('__FOO_BAR__')).toEqual('__foo_bar__');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user