Skip to content

Instantly share code, notes, and snippets.

@jwoudenberg
Created September 12, 2014 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwoudenberg/19ed03a71d6015388112 to your computer and use it in GitHub Desktop.
Save jwoudenberg/19ed03a71d6015388112 to your computer and use it in GitHub Desktop.
Bug in cucumber.js 0.4.3
Feature: Demonstrating a bug.
Scenario Outline: Scenario one.
Given I do anything
Examples:
|property |
|one |
|two |
Scenario Outline: Scenario two.
Given I do anything
Examples:
|property |
|one |
npm install cucumber@0.4.3
./node_modules/cucumber/bin/cucumber.js test.feature -r test.steps.js -f pretty
module.exports = function debugSteps() {
this.Given('I do anything', function(done) {
done();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment