mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
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();
|
||
|
});
|