Skip to content

Instantly share code, notes, and snippets.

@paulbjensen
Created June 17, 2018 12:38
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 paulbjensen/ffa0c6999aa2abd75286af7cde88a12a to your computer and use it in GitHub Desktop.
Save paulbjensen/ffa0c6999aa2abd75286af7cde88a12a to your computer and use it in GitHub Desktop.
The output from running a cucumber-js command, part of a Medium article
UUUUUUUUU
Warnings:
1) Scenario: Successfully delete my data # features/delete_my_data.feature:6
? Given I am a registered user
Undefined. Implement with the following snippet:
Given('I am a registered user', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? When I login to the application
Undefined. Implement with the following snippet:
When('I login to the application', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? And I visit my settings
Undefined. Implement with the following snippet:
When('I visit my settings', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? When I click on "Delete my data"
Undefined. Implement with the following snippet:
When('I click on {string}', function (string) {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? And I fill in "confirmation" with "registered_user_email@example.com"
Undefined. Implement with the following snippet:
When('I fill in {string} with {string}', function (string, string2) {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? And I press "Delete my data"
Undefined. Implement with the following snippet:
When('I press {string}', function (string) {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? Then I should be logged out of the application
Undefined. Implement with the following snippet:
Then('I should be logged out of the application', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? And I should see "Your data has been deleted from the application"
Undefined. Implement with the following snippet:
Then('I should see {string}', function (string) {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
? And there shouldn't be any data for the user "registered_user_email@example.com"
Undefined. Implement with the following snippet:
Then('there shouldn\'t be any data for the user {string}', function (string) {
// Write code here that turns the phrase above into concrete actions
return 'pending';
});
1 scenario (1 undefined)
9 steps (9 undefined)
0m00.000s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment