npx create-react-app testing-irl
Feel free to give a different name to the app
.spec.js
-> Testing files using the RTL (React Testing Library)
- Fork this project
-
Clone the forked repository
git clone https://github.com/user/testing-irl
(if you usegit
)or
gh repo clone user/testing-irl
(if you usegh
cli) -
Install the dependencies
npm install
(if you usenpm
)or
yarn
(if you useyarn
) -
Start the project
npm run start
(if you usenpm
)or
yarn start
(if you useyarn
) -
Also, to check the tests, run
npm run test
(if you usenpm
)or
yarn test
(if you useyarn
)
Distributed under the MIT License