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).toMatch(/^[0-9]+$/);
expect(token).toMatch(/^[03456789]+$/);
});
});
});