Skip to content

Commit

Permalink
test: Add maxLength validation test for uuid25
Browse files Browse the repository at this point in the history
  • Loading branch information
oculus42 committed May 1, 2024
1 parent 9ad09b1 commit 7d8f970
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,11 @@ test('uuid25 should be compatible with uuid25 examples', (t) => {
});
});

test('uuid25 translator should provide maxLength 25', (t) => {
t.plan(1);
t.equal(b36.maxLength, 25);
});

test('Default generate quantity tests', (t) => {
t.plan(1);
let underLength = 0;
Expand Down

0 comments on commit 7d8f970

Please sign in to comment.