-
Notifications
You must be signed in to change notification settings - Fork 0
Description
AS A user,
I WANT TO create tasks on the todo app
TO remind myself of tasks I have to do
SO THAT I can complete them
SCENARIO: User Clicks Add Task
GIVEN the user is on the logged-in screen of the ToDo List app,
WHEN the user clicks on the plus symbol,
THEN the user should see a popup that allows them to fill out the name and description of a task,
WITHIN 2 seconds.
SCENARIO: User Clicks Add Task But Doesn't Want to Add Task
GIVEN the user is on the logged-in screen of the ToDo List app and has clicked add task,
WHEN the user clicks on the plus symbol,
THEN the user should see a popup that allows them to fill out the name and description of a task,
WITHIN 2 seconds.
AND the user should able to click an X button to close the popup
WITHIN 3 seconds