Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiptest/hps-cucumber-javascript
Hiptest publisher samples with Cucumber/Javascript
https://github.com/hiptest/hps-cucumber-javascript
cucumber hiptest-publisher
Last synced: 3 months ago
JSON representation
Hiptest publisher samples with Cucumber/Javascript
- Host: GitHub
- URL: https://github.com/hiptest/hps-cucumber-javascript
- Owner: hiptest
- Created: 2016-02-25T14:06:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-12-29T20:54:26.000Z (almost 3 years ago)
- Last Synced: 2024-04-09T15:07:43.414Z (9 months ago)
- Topics: cucumber, hiptest-publisher
- Language: JavaScript
- Homepage:
- Size: 50.8 KB
- Stars: 2
- Watchers: 9
- Forks: 66
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hps-cucumber-javascript
[![Build Status](https://travis-ci.org/hiptest/hps-cucumber-javascript.svg?branch=master)](https://travis-ci.org/hiptest/hps-cucumber-javascript)Hiptest publisher samples with Cucumber/Javascript
In this repository you'll find tests generated in Cucumber/Javascript format from [Hiptest](https://hiptest.com), using [Hiptest publisher](https://github.com/hiptest/hiptest-publisher).
The goals are:
* to show how tests are exported in Cucumber/Javascript.
* 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 :-)
Prerequesites
-------------* [Node.js](https://nodejs.org/en/) or [io.js](https://iojs.org/en/)
* [NPM](https://www.npmjs.com/)
* [Hiptest publisher](https://github.com/hiptest/hiptest-publisher)Update tests
-------------To update the tests:
hiptest-publisher -c cucumber-js.conf --only=features,step_definitions
The tests are generated in the [``features``](https://github.com/hiptest/hps-cucumber-javascript/tree/master/features) directory.
Run tests
---------To build the project and run the tests, use the following command:
npm install
node_modules/.bin/cucumber-js --format=json | node_modules/cucumber-junit/bin/cucumber-junit --features-as-suites > junit_output.xmlThe SUT implementation can be seen in [``src/coffee_machine.js!``](https://github.com/hiptest/hps-cucumber-javascript/blob/master/src/coffee_machine.js)
The test report is generated in ```junit_output.xml```