Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1.06 KB

exercise13.md

File metadata and controls

35 lines (21 loc) · 1.06 KB

Exercise 13: Review the changes

Let's recap what we are supposed to build:

As a User,
When I have added multiple Tasks to the To Do List,
And I have marked some Task as "Done",
Then the "Clear Completed" button should be enabled.

When I click on "Clear Completed",
Then I should only see "Undone" Tasks on the To Do list.

Completed Feature Walkthrough

After you have implemented the "Clear Completed" feature, the application should look like this:

Final walkthrough

Reference Implementation

You can view the completed implementation of the "Clear Completed" feature in the feature-clear-completed branch.

  1. To check out the branch, on the bottom left of the Visual Studio Code window, click on the current branch name: main

    Checkout branch

  2. Select feature-clear-completed.

    Select branch

  3. You will be able to see the completed solution for exercises 10, 11 and 12.

Bonus Exercises