import { VERSION } from '../config/config';
// @ts-ignore
import * as packageData from '../../package.json';

describe('Verify version string with project-version', () => {
  it('Version in config should be same as package.json version', () => {
    expect(VERSION).toEqual(packageData.version);
  });
});
