Journal Week 8 Day 4

... Less than 1 minute

# Journal Week 8 Day 4

What are the three main types of testing we can accomplish in Vue? What does each method provide?

What testing method do you think is the most useful? Why?

What testing method do you think is the least useful? Why?

  1. The three main types are Unit testing, Component testing, and End to End testing.

  2. The most important is the end to end testing. The reason is because it actually tells you what will happen when your user uses the app.

  3. Unit testing is the least useful looking. It does what others do, just on a smaller scope.