Skip to content

Latest commit

 

History

History
executable file
·
117 lines (84 loc) · 4.67 KB

File metadata and controls

executable file
·
117 lines (84 loc) · 4.67 KB

CucumberJS with Gherkin scenarios in Protractor & Angular2

An example project to setup CucumberJS with Gherkin scenarios in Protractor & Angular2 As a base for the project I've used the amazing starting pack: https://github.com/AngularClass/angular2-webpack-starter

Get started

# clone the repo 
git clone https://github.com/samvloeberghs/protractor-gherkin-cucumberjs-angular2.git
 
# change directory to our repo 
cd protractor-gherkin-cucumberjs-angular2
 
# install the repo with npm 
npm install
 
# start the server 
npm start 

# run the tests ( this will both run the E2E & unit tests ) 
npm run e2e

CucumberJS

Cucumber.js is a Cucumber implementation written in pure JavaScript. It runs on Node.js, IO.js, browsers and any other JavaScript platform.

More info:

Gherkin scenarios

Gherkin is the language that Cucumber understands. It is a Business Readable, Domain Specific Language that lets you describe software’s behaviour without detailing how that behaviour is implemented.

Gherkin serves two purposes — documentation and automated tests. The third is a bonus feature — when it yells in red it’s talking to you, telling you what code you should write.

More info: