test(v2): add unit test for migration of config file (#3323)

This commit is contained in:
Bogdan Doroschenko 2020-08-27 13:03:51 +03:00 committed by GitHub
parent d299b99631
commit a72ac91e3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 185 additions and 0 deletions

View file

@ -0,0 +1,22 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import importFresh from 'import-fresh';
import {createConfigFile} from '../index';
describe('create config', () => {
test('simple test', () => {
const input = importFresh(`${__dirname}/__fixtures__/sourceSiteConfig.js`);
const result = createConfigFile(input);
const output = importFresh(
`${__dirname}/__fixtures__/expectedSiteConfig.js`,
);
expect(result).toEqual(output);
});
});