mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
7 lines
214 B
TypeScript
7 lines
214 B
TypeScript
|
import { generateRandomSecretKey, TOKEN_VALID_LENGTH } from '../src/token';
|
||
|
|
||
|
test('token test valid length', () => {
|
||
|
const token = generateRandomSecretKey();
|
||
|
expect(token).toHaveLength(TOKEN_VALID_LENGTH);
|
||
|
});
|