Skip to content
  • Sponsor TheAlgorithms/JavaScript

  • Notifications You must be signed in to change notification settings
  • Fork 5.7k
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0b2b277

Browse files
committedOct 1, 2024·
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
 

‎Conversions/test/CamelPascalToSnakeCase.test.js

Lines changed: 1 addition & 0 deletions
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)
Please sign in to comment.