mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
5becf3f257
* feat: use clipanion over commander * chore: update * chore: add missing options * chore: fix arguments * chore: format code * chore: update * chore: fix missing node conf * chore: add version * Update setup.ts * chore: fix config flag * chore: add changeset
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
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();
|
|
});
|