An open API service indexing awesome lists of open source software.

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

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
```