We want to explore conditional routes and a richer state than the simple array we have now
Stories
AS a user
GIVEN that I do not have an account
WHEN I click register
THEN I want to start a registration flow.
AS a user
GIVEN that I do not have an account
AND I have clicked register
WHEN I view the screen
THEN I will see the personal contact screen
AS a user
GIVEN that I do not have an account
AND I have filled in the contact screen
WHEN I click next
THEN I will see the profile picture screen
AS a user
GIVEN that I do not have an account
AND uploaded a picture
WHEN I provide a picture
THEN I will be able to veiw it
AND get a string representation of the image
AS a user
GIVEN that I do not have an account
AND I've completed the profile page
WHEN click confirm
THEN I will be logged in
AND I will have a profile picture
AS a user
GIVEN that I do not have an account
AND I have not completed any of the registration
WHEN I navigate directly to the profile page
THEN I will be redirected to the personal contact
Context
We want to explore conditional routes and a richer state than the simple array we have now
Stories
AS a user GIVEN that I do not have an account WHEN I click register THEN I want to start a registration flow.
AS a user GIVEN that I do not have an account AND I have clicked register WHEN I view the screen THEN I will see the personal contact screen
AS a user GIVEN that I do not have an account AND I have filled in the contact screen WHEN I click next THEN I will see the profile picture screen
AS a user GIVEN that I do not have an account AND uploaded a picture WHEN I provide a picture THEN I will be able to veiw it AND get a string representation of the image
AS a user GIVEN that I do not have an account AND I've completed the profile page WHEN click confirm THEN I will be logged in AND I will have a profile picture
AS a user GIVEN that I do not have an account AND I have not completed any of the registration WHEN I navigate directly to the profile page THEN I will be redirected to the personal contact
Nonfunctionals