diff --git a/.gitignore b/.gitignore index 329996c..43324af 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ /node_modules bundle.js npm-debug.log + +# IntelliJ +*.iml +/.idea \ No newline at end of file diff --git a/README.md b/README.md index 7074f71..63be420 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Interested in learning [Redux](https://www.udemy.com/react-redux/)? There are two methods for getting started with this repo. ####Familiar with Git?##### -Checkout this repo, install depdencies, then start the gulp process with the following: +Checkout this repo, install dependencies, then start the gulp process with the following: ``` > git clone git@github.com:StephenGrider/ReduxSimpleStarter.git diff --git a/src/components/app.js b/src/components/app.js index 27ca5cc..58614b0 100644 --- a/src/components/app.js +++ b/src/components/app.js @@ -1,5 +1,4 @@ -import React from 'react'; -import { Component } from 'react'; +import React, { Component } from 'react'; export default class App extends Component { render() { diff --git a/test/test_helper.js b/test/test_helper.js index 7e727fe..e4d00a0 100644 --- a/test/test_helper.js +++ b/test/test_helper.js @@ -11,6 +11,7 @@ import reducers from '../src/reducers'; global.document = jsdom.jsdom(''); global.window = global.document.defaultView; +global.navigator = global.window.navigator; const $ = _$(window); chaiJquery(chai, chai.util, $);