Created
September 12, 2014 10:49
-
-
Save jwoudenberg/19ed03a71d6015388112 to your computer and use it in GitHub Desktop.
Bug in cucumber.js 0.4.3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install [email protected] | |
./node_modules/cucumber/bin/cucumber.js test.feature -r test.steps.js -f pretty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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