Testing "Complete Task" Feature

Become more familiar with Jest and Selenium and further develop our app in the following two lessons.

The task at hand

Now that you have the defining idea behind testing, we will further develop your experience by writing more tests and features.

As we are developing a TODO app, it would be a good idea to be able to complete tasks. Here is how a potential user story might look:

A user must be able to mark any task as completed by clicking on it. He can also mark any completed task as incomplete by clicking on it. Completed tasks must have a completed CSS class.

Integration test

As always, the first step to implementing a user story would be to write the integration test. In this test, we are looking to create a few tasks. Try to complete one of them (and verify that it completes), and then uncomplete it. Firstly, create the file complete-task.test.js under /integration-tests. Copy over ...