mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-04-19 04:56:17 +00:00
Added short code length field to form to create short URLs
This commit is contained in:
23
test/utils/helpers/version.test.js
Normal file
23
test/utils/helpers/version.test.js
Normal file
@@ -0,0 +1,23 @@
|
||||
import { versionMatch } from '../../../src/utils/helpers/version';
|
||||
|
||||
describe('version', () => {
|
||||
describe('versionMatch', () => {
|
||||
it.each([
|
||||
[ undefined, {}, false ],
|
||||
[ null, {}, false ],
|
||||
[ '', {}, false ],
|
||||
[[], {}, false ],
|
||||
[ '2.8.3', {}, true ],
|
||||
[ '2.8.3', { minVersion: '2.0.0' }, true ],
|
||||
[ '2.0.0', { minVersion: '2.0.0' }, true ],
|
||||
[ '1.8.0', { maxVersion: '1.8.0' }, true ],
|
||||
[ '1.7.1', { maxVersion: '1.8.0' }, true ],
|
||||
[ '1.7.3', { minVersion: '1.7.0', maxVersion: '1.8.0' }, true ],
|
||||
[ '1.8.3', { minVersion: '2.0.0' }, false ],
|
||||
[ '1.8.3', { maxVersion: '1.8.0' }, false ],
|
||||
[ '1.8.3', { minVersion: '1.7.0', maxVersion: '1.8.0' }, false ],
|
||||
])('properly matches versions based on what is provided', (version, versionConstraints, expected) => {
|
||||
expect(versionMatch(version, versionConstraints)).toEqual(expected);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user