Web app that consumes the to-do-list-api.
$ npm install # install dependencies
$ npm run server # run server
$ npm run build # to build a site into dist folder
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"