Challenge: Quality Assurance
Explore how to apply quality assurance strategies in Flutter by completing a challenge focused on widget testing. Learn to test task visibility, simulate task dismissal, and confirm task deletion with SnackBar notifications. This lesson helps you understand how to ensure app reliability with practical testing techniques.
Goal
This challenge aims to test your understanding of widget tests in Flutter.
Specs
You’ll be required to test the TasksList widget, ensuring that when it is rendered, the to-do list items are shown, and when a task is dismissed, it is deleted from the list of tasks.
Starter code
Before you begin the ...