https://github.com/sigfriedcub1990/random-quote-machine
Random quote manchine project from freeCodeCamp
https://github.com/sigfriedcub1990/random-quote-machine
Last synced: 3 months ago
JSON representation
Random quote manchine project from freeCodeCamp
- Host: GitHub
- URL: https://github.com/sigfriedcub1990/random-quote-machine
- Owner: sigfriedCub1990
- Created: 2020-08-09T19:35:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-09T19:37:10.000Z (almost 5 years ago)
- Last Synced: 2025-01-15T01:43:19.667Z (4 months ago)
- Language: JavaScript
- Size: 224 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Random quote machine
## Index
1. [Description](#description)
2. [Running the app](#running-app)
3. [Running tests](#running-tests)### Description
This is one of the project from [freeCodeCamp](https://www.freecodecamp.org/learn/front-end-libraries/front-end-libraries-projects/build-a-random-quote-machine), I selected this project in order to `learn` a bit about [Cypress](https://www.cypress.io/).
### Running the app
This app was bootstraped with `create-react-app` so, in order to run it:
```sh
yarn install
yarn start # This will run the development server
```### Running tests
The main part of interest :), as I said this is the primary motivation behind this little project:
```sh
yarn test # Unit test for a helper function
yarn e2e # Cypress e2e tests
```