Getting started with Jest in just 5 minutes
Testing with Jest, this may sound overwhelming but in fact getting started is very simple.
To get started let us test a simple function
const celsiusToFahrenheit = (temp) => {
return (temp * 1.8) + 32
}
Here we declared a function named celsiusT...
blog.proagetech.com2 min read