Moved config files to a separate folder

This commit is contained in:
Jori Lallo
2018-01-03 16:58:34 -08:00
parent 686c237e36
commit 7a7f8f7c53
6 changed files with 13 additions and 15 deletions

View File

@@ -1,13 +0,0 @@
/* eslint-disable */
import React from 'react';
import { shallow } from 'enzyme';
import toJson from 'enzyme-to-json';
import localStorage from './__mocks__/localStorage';
const snap = children => {
const wrapper = shallow(children);
expect(toJson(wrapper)).toMatchSnapshot();
};
global.localStorage = localStorage;
global.snap = snap;