Skip to content

Commit c9fa59d

Browse files
committed
Add test for #107
Closes #107
1 parent 803532b commit c9fa59d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ test('camelCase with pascalCase option', t => {
138138
t.is(camelCase('РОЗОВЫЙ_ПУШИСТЫЙ-ЕДИНОРОГИ', {pascalCase: true}), 'РозовыйПушистыйЕдинороги');
139139
t.is(camelCase('桑德在这里。', {pascalCase: true}), '桑德在这里。');
140140
t.is(camelCase('桑德_在这里。', {pascalCase: true}), '桑德在这里。');
141+
t.is(camelCase('a1b', {pascalCase: true}), 'A1B');
141142
});
142143

143144
test('camelCase with preserveConsecutiveUppercase option', t => {

0 commit comments

Comments
 (0)