krewcumber
v0.5.1
Published
A user acceptance test library powered by Cucumber and WebdriverIO
Downloads
4
Readme
Krewcumber
Designed to work with Chimp. Krewcumber is a library that makes use of WebdriverIO and Cucumber to make writing user acceptance tests easier.
This library adds steps that are useful for testing web applications.
Installation
Please make sure to install Chimp either globally or locally depending on your project's needs:
npm install --save-dev krewcumber chimp
Registering step definitions
After installing, make sure to register step definitions by adding a
features/step_definitions/steps.js
file to your project.
var Krewcumber = require('krewcumber');
module.exports = function () {
Krewcumber.init(this);
}