-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUS06.feature
35 lines (28 loc) · 1.17 KB
/
US06.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Feature: Account Recovery
As a user
I want to recover my password via the email linked to my account
So that I can regain access to it
Scenario: Password Recovery Request
Given the user accesses the account recovery form,
When the user enters their linked email address,
Then a unique password reset link is generated and sent to the provided email address.
Examples:
| email |
Scenario: Password Recovery Request with Unlinked Email
Given the user accesses the account recovery form,
When the user enters an unlinked email address,
Then an error message is displayed indicating that the email entered is not linked to any account.
Examples:
| email |
Scenario: Error Sending Recovery Email
Given the user accesses the account recovery form,
When the user enters their linked email address,
Then no recovery email is received.
Examples:
| email |