mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
17 lines
675 B
Gherkin
17 lines
675 B
Gherkin
@customer_login
|
|
Feature: Resetting a password
|
|
In order to login to my account when I forgot my password
|
|
As a Visitor
|
|
I need to be able to reset my password
|
|
|
|
Background:
|
|
Given the store operates on a single channel in "United States"
|
|
And there is a user "goodman@example.com" identified by "heisenberg"
|
|
|
|
@ui @email
|
|
Scenario: Resetting an account password
|
|
Given I want to reset password
|
|
When I specify the email as "goodman@example.com"
|
|
And I reset it
|
|
Then I should be notified that email with reset instruction has been send
|
|
And the email with reset token should be sent to "goodman@example.com"
|