gtlkanth
gtlkanth

Reputation: 211

How to test using Jest

I am new to Jest. Looking Jest as a unit testing framework, How can it be used for testing a website. I could found Jest examples applies to validation of Java script business functionalities but how can it be used for a website testing similar to Selenium. It would be really great if somebody could provide an update.

Thanks in Advance.

gtlkanth

Upvotes: 1

Views: 378

Answers (1)

Max Millington
Max Millington

Reputation: 4498

Jest can't be used for end to end integration tests. It is focused on testing isolated features of your application's logic.

https://github.com/facebook/jest/issues/560

Upvotes: 1

Related Questions