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
- Host: GitHub
- URL: https://github.com/arthurdenner/users-posts-app
- Owner: arthurdenner
- License: mit
- Created: 2019-02-17T12:20:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-07T13:02:55.000Z (almost 6 years ago)
- Last Synced: 2025-01-23T19:52:58.421Z (4 months ago)
- Language: TypeScript
- Homepage: https://users-posts-app.netlify.com/
- Size: 539 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```