import React from 'react';
import { Provider } from 'react-redux';
import TestRenderer from 'react-test-renderer';
import store from '../state/Store';
import AuthenticationView from '../views/AuthenticationView';
describe('', () => {
it('has 3 children', () => {
const tree = TestRenderer.create(
).toJSON();
expect(tree.children.length).toBe(3);
});
});