$ npm install# development
$ npm run start
## Test
```bash
# unit tests
$ npm run test# test coverage
$ npm run test:covRun the following command in the backend-nestjs repo.
npm run start:coverageOpen two terminals in the frontend repo and run the following commands: In the first terminal, run
npm run start:coverageIn the second terminal, run
npm run cy:openTo run tests without the interactive browser use
npm run cy:run
After the tests are done running, a coverage report will be generated in the frontend directory, specifically in coverage/lcov-report/index.html, which you can open in a browser.