Skip to content

esau-morais/testing-irl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🧪 React Testing IRL

React Testing IRL

🧪 Setting up our React App

npx create-react-app testing-irl

Feel free to give a different name to the app

📐 The project structure

  • .spec.js -> Testing files using the RTL (React Testing Library)

⚛️ Setting Up React App

  1. Fork this project

Forking the project

  1. Clone the forked repository

    git clone https://github.com/user/testing-irl (if you use git)

    or

    gh repo clone user/testing-irl (if you use gh cli)

  2. Install the dependencies

    npm install (if you use npm)

    or

    yarn (if you use yarn)

  3. Start the project

    npm run start (if you use npm)

    or

    yarn start (if you use yarn)

  4. Also, to check the tests, run

    npm run test (if you use npm)

    or

    yarn test (if you use yarn)


📑 License

Distributed under the MIT License