mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 21:59:05 +00:00
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
import { getLatestVersion } from './util';
|
|
|
|
describe('modules/datasource/sbt-package/util', () => {
|
|
it('gets latest version', () => {
|
|
expect(getLatestVersion(['1.0.0', '3.0.0', '2.0.0'])).toBe('3.0.0');
|
|
});
|
|
});
|