Skip to content

Commit

Permalink
test: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zer0xxxx committed Jun 21, 2024
1 parent 5fbd1b1 commit 375aa41
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/portable/str/__tests__/prebuild.capitalize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import capitalize from '../capitalize';
describe('capitalize', () => {
it('should return capitalized string, given any string', () => {
expect(capitalize('abc')).toBe('Abc');
expect(capitalize('aBc')).toBe('ABc');
expect(capitalize('ABC')).toBe('ABC');
expect(capitalize(' aBC')).toBe(' aBC');
});
Expand Down

0 comments on commit 375aa41

Please sign in to comment.