$ npm install
# development
$ npm run start
## Test
```bash
# unit tests
$ npm run test
# test coverage
$ npm run test:cov
Run the following command in the backend-nestjs repo.
npm run start:coverage
Open two terminals in the frontend repo and run the following commands: In the first terminal, run
npm run start:coverage
In the second terminal, run
npm run cy:open
To 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.