[1] Renamed generic utils to specialized versions
It is required for follow up commits Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
cf3ad82a72
commit
8779625701
3 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
export {};
|
||||
|
||||
import { parseDataVersion, parseAppVersion } from './utils';
|
||||
import { parseDataVersion, parseAppVersion } from './versions';
|
||||
|
||||
// TODO: Implement automated version checks from this metaserver script.
|
||||
// It should check by cron if actual files are really available on all servers.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { describe, expect, test } from '@jest/globals';
|
||||
import { parseDataVersion, parseAppVersion } from '../src/utils';
|
||||
import { parseDataVersion, parseAppVersion } from '../src/versions';
|
||||
|
||||
describe('parseDataVersion', () => {
|
||||
test('220801', () => expect(parseDataVersion('220801')).toEqual(220801));
|
Loading…
Add table
Reference in a new issue