jest react typescript code example
Example 1: how to install jest
npm install --save-dev jest
// Yarn
yarn add --dev jest
Example 2: react typescript testing
npm install @types/jest @testing-library/react @testing-library/jest-dom jest ts-jest
# Yarn
yarn add @types/jest @testing-library/react @testing-library/jest-dom jest ts-jest