Skip to content

Latest commit

 

History

History
37 lines (21 loc) · 1.37 KB

README.md

File metadata and controls

37 lines (21 loc) · 1.37 KB

hps-protractor

Build Status

Hiptest publisher samples with Protractor

In this repository you'll find tests generated for Protractor format from Hiptest, using Hiptest publisher.

The goals are:

  • to show how tests are exported with Protractor.
  • to check exports work out of the box (well, with implemented actionwords)

System under test

The SUT is a (not that much) simple coffee machine. You start it, you ask for a coffee and you get it, sometimes. But most of times you have to add water or beans, empty the grounds. You have an automatic expresso machine at work or at home? So you know how it goes :-)

Update tests

To update the tests:

hiptest-publisher -c protractor.conf --only=tests

The tests are generated in e2e-tests/

Run tests

To build the project and run the tests, use the following command:

npm install
(npm start > /dev/null &) && (npm run protractor)

The SUT implementation can be seen in app/src. Note that we haven't yet moved the coffee machine to real Angular.js app, but that is planned.