Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 869 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 869 Bytes

To-do List Web

Web app that consumes the to-do-list-api.

Usage

$ npm install           # install dependencies
$ npm run server        # run server
$ npm run build         # to build a site into dist folder

Test

We are use protactor to test e2e, so you need have it installed.

run all tests e2e:

$ protractor spec/conf.js --params.email="email of the valid user" \
                          --params.password="password of the user" \
                          --params.urlApi="url to the api"

a possible example:

$ protractor spec/conf.js --params.email="[email protected]" \
                          --params.password="pass3" \
                          --params.urlApi="https://quiet-bastion-71306.herokuapp.com"