fusion-cli
Version:
19 lines (15 loc) • 618 B
JavaScript
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
// This file is not used by fusion-cli directly anywhere. It might be imported from elsewhere.
/* eslint-env node */
/* eslint-disable import/no-unresolved, import/no-extraneous-dependencies */
import {configure} from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
/* eslint-enable import/no-unresolved, import/no-extraneous-dependencies */
// Setup Enzyme for all Jest tests
configure({adapter: new Adapter()});