-
Notifications
You must be signed in to change notification settings - Fork 0
Description
AS A user,
I WANT TO view and interact with tasks I have completed
TO go over what I have done or move a task back to the todo section
SO THAT I can complete them
SCENARIO: User Clicks on the Completed Icon on the Dock to Switch App Pages
GIVEN the user is on the logged-in screen of the ToDo List app,
WHEN the the Completed Icon,
THEN the user should be moved to the completed page of the app,
WITHIN 2 seconds.
SCENARIO: User Wants to Edit Tasks
GIVEN the user is on the logged-in screen of the ToDo List app or the completed page,
WHEN the user clicks on task,
THEN the user should see a popup about the task information with an edit icon,
WITHIN 2 seconds.
AND the user should able to click the edit icon to edit the task
WITHIN 3 seconds
Scenario: User Wants to Move a Task from Completed to ToDo
GIVEN the user is on the completed page,
WHEN the user clicks on the check task icon to complete the task,
THEN the user should see the task disappear from the completed page, and moved back to the todo page
WITHIN 2 seconds.