Skip to content

Commit 6554d94

Browse files
committed
casing
1 parent 18184fe commit 6554d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/casing/__tests__/casing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ it('should convert strings to camelCase', () => {
1818
expect(toCamelCase('hello-world')).toBe('helloWorld');
1919
expect(toCamelCase('Hello-World')).toBe('helloWorld');
2020
expect(toCamelCase('_hello_world')).toBe('helloWorld');
21-
expect(toCamelCase('123hello_world')).toBe('helloWorld');
21+
expect(toCamelCase('123hello_world')).toBe('123helloWorld');
2222
});
2323

2424
it('should validate valid JavaScript identifiers', () => {

0 commit comments

Comments
 (0)