1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/cli/test/utils.spec.ts

14 lines
342 B
TypeScript
Raw Normal View History

import { isVersionValid } from '../src/utils';
test('valid version node.js', () => {
expect(isVersionValid('14.0.0')).toBeTruthy();
});
test('is invalid version node.js', () => {
expect(isVersionValid('11.0.0')).toBeFalsy();
});
test('Node 12 should valid version node.js', () => {
expect(isVersionValid('12.0.0')).toBeTruthy();
});