Skip to content

Commit

Permalink
fixed eslint errors about semicolon and absolute import priority
Browse files Browse the repository at this point in the history
  • Loading branch information
granda committed Oct 17, 2016
1 parent 51aed5f commit 188bafb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Layout/Layout.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
import React from 'react';
import { expect } from 'chai';
import { shallow } from 'enzyme';
import configureStore from 'redux-mock-store';
import App from '../App';
import Layout from './Layout';
import configureStore from 'redux-mock-store';

describe('Layout', () => {

it('renders children correctly', () => {
const mockStore = configureStore();
const store = mockStore()
const store = mockStore();

const wrapper = shallow(
<App context={{ insertCss: () => {}, store }}>
Expand Down

0 comments on commit 188bafb

Please sign in to comment.