Skip to content

Commit

Permalink
merging latest/same changes in PR StephenGrider/pull/217
Browse files Browse the repository at this point in the history
  • Loading branch information
andresn committed Mar 30, 2018
2 parents 641f597 + c440340 commit cd3a603
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This fork contains the following updates as of 3/28/2018:
- Upgraded to React-Redux 5.
- Upgraded to Webpack 4.
- Changed babel preset to 'env': https://www.npmjs.com/package/babel-preset-env
- Moved from using Mocha/Chai to Jest/Enzyme. Demo test is within src/components/.
- Moved from using Mocha/Chai to Jest/Enzyme. Demo test is within src/components/. See "Run Tests" section below.
- Package control using Yarn instead of NPM.
- Added support for JS object rest spread (...destructuring) and class properties.

Expand Down Expand Up @@ -38,5 +38,11 @@ This repo uses Jest and Enzyme for testing. Here's a great video intro: https://

```
> yarn test
<<<<<<< HEAD
> yarn test:watch # tests will run as you make modifications
```
```
=======
> yarn test:watch # Tests will run as you make modifications
> yarn test:cover # Produce a code coverage report. Open ./coverage/Icov-report/index.html in browser and profit!
```
>>>>>>> ReduxSimpleStarterRefreshed
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"scripts": {
"start": "webpack-dev-server --inline --hot --mode development --open",
"test": "jest",
"test:watch": "npm run test -- --watch"
"test:watch": "yarn test -- --watch",
"test:cover": "yarn test -- --coverage"
},
"author": "",
"license": "ISC",
Expand Down

0 comments on commit cd3a603

Please sign in to comment.