|
|
|
|
|
by kaicianflone
2969 days ago
|
|
Stephen Grider on Udemy uses Jest to create automated tests for his JS and React courses that you can run while you watch and code his videos. Jest and Mocha both have a watch feature that will test a file each time it is saved for "continuous testing", much like using Gulp watch or any type of dev live server environment. Also Jest features Snapshot testing which will take a picture of a UI and test all changes made to the UI, as well as alerting you in tests if the UI has changed. I could see this being used in bootcamps as well. |
|