Additional tests

This commit is contained in:
Angelos Chalaris
2018-10-31 20:41:38 +02:00
parent 53151c01e5
commit abd66ccc0a
5 changed files with 21 additions and 1 deletions

View File

@ -13,5 +13,5 @@ test('Converts a string from camelcase', () => {
);
});
test('Converts a string from camelcase', () => {
expect(fromCamelCase('someJavascriptProperty', '_')).toBe('some_javascript_property');
expect(fromCamelCase('someJavascriptProperty')).toBe('some_javascript_property');
});