Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 789 Bytes

commands.md

File metadata and controls

30 lines (18 loc) · 789 Bytes

Development commands and scripts

Start this front-end app locally

To build a development version and run it locally:

npm install -g yarn
yarn
yarn start

This will compile typescript files and start a local development server listening on port 3000. The single page application is then available at:

e2e tests execution

Cypress is used to test the application.

Manually execute e2e tests

  1. open a new terminal and start the app using yarn start
  2. wait for the app to be available at http://localhost:3000
  3. open the Cypress Launchpad using yarn e2e:open
  4. run the e2e tests through the Cypress UI

Automatically execute e2e tests

Just execute the following command:

  • yarn e2e:run:ci