This directory contains the source code of a basic React application designed for this technical test.
Make sure you have Node and npm or yarn installed on your environment. We advise you to use a Version manager as nvm and use Node >= 16.
Install the dependencies by running the following command on the /front
directory:
yarn install
You can now run the front-end application (it will default to the port 3000
)
yarn start
We have created a simple CI that run tests and runs a linter to check the code quality and functionality.
# Without autocorrect
yarn lint
# With autocorrect
yarn lint:fix
# Cypress run
yarn test
# Cypress open
yarn test:watch