Skip to content

Commit 0b2b277

Browse files
committed
covered all lines in test cases
1 parent e89c994 commit 0b2b277

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: Conversions/test/CamelPascalToSnakeCase.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ describe('camelToSnakeCase', () => {
44
it.each([
55
['someRandomString', 'some_random_string'],
66
['SomeRandomStr#ng', 'some_random_str_ng'],
7+
['_SomeRandomStr#ng', 'some_random_str_ng'],
78
['123someRandom123String123', '123some_random123_string123'],
89
['123SomeRandom123String123', '123_some_random123_string123'],
910
['123SomeRandom123String123', '123_some_random123_string123'],

0 commit comments

Comments
 (0)