Introduction to Cypress

Learn to use Cypress for testing to overcome the limitations of @WebMvcTest.

Earlier, we used @WebMvcTest to start a mock servlet environment for our testing. It had a few limitations which we’ll discuss below.

Drawbacks of @WebMvcTest

While @WebMvcTest has a lot of advantages, there are also a few drawbacks:

  • There might be a difference between the mock servlet environment and the actual behavior of ...