An open API service indexing awesome lists of open source software.

https://github.com/arthurdenner/users-posts-app

A simple React app written to practice tests that makes use of the JSONPlaceholder API
https://github.com/arthurdenner/users-posts-app

Last synced: 3 months ago
JSON representation

A simple React app written to practice tests that makes use of the JSONPlaceholder API

Awesome Lists containing this project

README

        

# users-posts-app

This app was build to practice tests with
[Jest](https://github.com/facebook/jest) and
[react-testing-library](https://github.com/kentcdodds/react-testing-library/)
along with React and TypeScript. The
[JSONPlaceholder API](https://jsonplaceholder.typicode.com/) was used to get
some mock data.

## Run locally

```
git clone [email protected]:arthurdenner/users-posts-app.git
cd users-posts-app
npm install or yarn
npm start or yarn start
```

## Build locally

```
npm run build or yarn build
```

## Run tests

```
npm run test or yarn test
npm run test:watch or yarn test:watch
npm run test:coverage or yarn test:coverage
```