https://github.com/sanjsanj/my-react-todolist
A guide to TDD a React/Redux TodoList App
https://github.com/sanjsanj/my-react-todolist
enzyme react redux tdd tutorial webdriverio
Last synced: 2 months ago
JSON representation
A guide to TDD a React/Redux TodoList App
- Host: GitHub
- URL: https://github.com/sanjsanj/my-react-todolist
- Owner: sanjsanj
- Created: 2017-06-25T19:11:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-09T17:56:21.000Z (almost 8 years ago)
- Last Synced: 2025-03-20T17:04:23.685Z (3 months ago)
- Topics: enzyme, react, redux, tdd, tutorial, webdriverio
- Language: JavaScript
- Homepage: https://my-react-todolist.herokuapp.com/
- Size: 121 KB
- Stars: 22
- Watchers: 1
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## A guide to TDD a React/Redux TodoList App
[Read the tutorial](https://medium.com/@sanjsanj/a-guide-to-tdd-a-react-redux-todolist-app-part-1-b8a200bb7091)
[View the App online](https://my-react-todolist.herokuapp.com/)
### Setup:
```
npm install
```### Start app:
```
npm run start
```### Unit test:
```
npm run test
```### e2e/feature test:
```
npm run selenium-setup // run only once
npm run selenium-start // app must also be started with npm start
npm run e2e-tests
npm run e2e-tests-watch // if you want to run e2e in watch mode
```