Created
June 17, 2018 12:38
-
-
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
This file contains hidden or 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
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 "[email protected]" | |
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 "[email protected]" | |
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