Skip to content

Commit

Permalink
ci: update npm publish yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed May 2, 2024
1 parent eb75a0f commit c6180cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/typescript/tests/src/validateUsername.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('validateUsername', () => {

it('returns error for username starting with number', () => {
const result = validateUsername('123User');
expect(result).toEqual({ isValid: false, errorMsg: 'Cannot start with number' });
expect(result).toEqual({ isValid: false, errorMsg: 'Cannot start with a number' });
});

it('returns error for username containing only numbers', () => {
Expand Down

0 comments on commit c6180cc

Please sign in to comment.