wrap-bdd
v1.1.0
Published
a behavior driven development framework for test complete projects and any other testing projects
Downloads
8
Readme
wrapping-BDD
This repository contains code which allows cucumber-js BDD framework to be wrapped around a testing tool by means of a custom driver.
Install instructions
- Download and install nodejs
- Run :
npm install -g yo generator-wrap-bdd cucumber
- Create a local folder for storing the necessary cucumber-js artifacts :
mkdir bdd
cd bdd
yo wrap-bdd
Collaborator instructions
All source is written using coffee script. In the command prompt of root directory use the following to quickly compile all coffee script source:
coffee --compile --output lib/ src/
To wrap cucumber-js BDD with any testing tool, a testtoolfactory.coffee is provided to return an appropriate instance of the test tool driver. When writing the test tool driver, the only two criteria are that the test driver expose a testResult method and test driver emit a testResult event. The testResult method accepts a callback function with a boolean parameter. The 'testResult' event should be emitted when the testing tool has finished and returned result. Following are sample blocks where you will need to make changes when introducing a new test driver:
testtoolfactory.coffee:
customdriver.coffee
Test scripts
Still need to work on this.