From c744fe7bb80f364ed6eaad83feb397dc55aba313 Mon Sep 17 00:00:00 2001 From: Tien Do Nam Date: Sun, 22 Sep 2024 17:30:41 +0200 Subject: [PATCH] test: add no time id --- test/test.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/test.js b/test/test.js index ad5b001..f433ef0 100644 --- a/test/test.js +++ b/test/test.js @@ -12,3 +12,9 @@ const customId = tempoId({ alphabet: Alphabet.hexadecimalLowercase, }); console.log('Custom TempoId:', customId); + +const noTimeId = tempoId({ + timeLength: 0, + randomLength: 1, +}); +console.log('No time TempoId:', noTimeId); \ No newline at end of file