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

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

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
```