Additional tests

This commit is contained in:
Angelos Chalaris
2018-10-31 20:41:38 +02:00
parent 41a19a13d3
commit 290fb3fe13
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');
});