Skip to content

Commit

Permalink
fix: tags test
Browse files Browse the repository at this point in the history
  • Loading branch information
drodil committed Nov 29, 2024
1 parent 8c889fe commit 3060da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/qeta-common/src/tags.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('TAGS_REGEX', () => {
});

it('should not match invalid tags', () => {
expect(TAGS_REGEX.test('tag#1')).toBe(true);
expect(TAGS_REGEX.test('tag#1')).toBe(false);
expect(TAGS_REGEX.test('Tag')).toBe(false);
expect(TAGS_REGEX.test('tag!')).toBe(false);
expect(TAGS_REGEX.test('tag@')).toBe(false);
Expand Down

0 comments on commit 3060da1

Please sign in to comment.