mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
263b0f78a9
refactor: variable naming
11 lines
No EOL
284 B
JavaScript
11 lines
No EOL
284 B
JavaScript
/**
|
|
* Setup configuration for Jest
|
|
* This file includes global settings for the JEST environment.
|
|
*/
|
|
import 'raf/polyfill';
|
|
import { configure } from 'enzyme';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
|
|
configure({ adapter: new Adapter() });
|
|
|
|
global.__APP_VERSION__ = '1.0.0'; |