Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 663 Bytes

running-application-and-tests.md

File metadata and controls

28 lines (21 loc) · 663 Bytes

Application lifecycle

Setup

After you've cloned the repository, and before you can run the application locally or execute the tests, it is required to install the dependencies:

yarn install

Running the application in local environment

The application can be executed locally and will be available at http://localhost:3000/pairing-tool using the following command

yarn start

Running the tests

To run the unit tests, execute:

yarn test

To run the functional tests, first you will need to have the application up and running (yarn start) and in a new terminal, you can execute:

yarn cypress