1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-08-08 15:05:18 +02:00

fix: denied chars expected values

This commit is contained in:
ShareVB 2024-08-03 14:46:53 +02:00
parent 4ca3ac357e
commit f7e535f3c0

View file

@ -106,7 +106,7 @@ describe('token-generator', () => {
}); });
expect(token).toHaveLength(256); expect(token).toHaveLength(256);
expect(token).toMatch(/^[0-9]+$/); expect(token).toMatch(/^[03456789]+$/);
}); });
}); });
}); });