E2e end to end integration tests in ReactJS

While the ReactJS homepage clearly states that Jest is a way to do unit tests, it doesn't say anything about higher-level integration tests (or e2e, as they are called in the Angular world).

I am not familiar with testing at all. So what tools can I use for this? I heard about selenium, but this is a blurry image for me.

+4
source share
1 answer

You can use cypress . Cypress is most often compared to selenium; However, Cypress is fundamentally and architecturally different. Cypress is not limited to the same limitations as Selenium.

This allows you to write faster, simpler and more reliable tests.

0
source

All Articles