In this version we deploy the app locally without docker.
We will assume that you already have our project downloaded in your PC.
- Open your terminal and go into the folder where you have downloaded the project.
- Go into the
webapp
folder.
cd webapp
- Install the dependencies with
--force
to avoid errors.
npm install --force
- Finally, run the app with:
npm start
If the application doesn't open automatically, you can open it in your browser in http://localhost:3000.
- Go to the
webapp
folder.
cd webapp
- Run the tests with:
npm test -- --coverage --watchAll=false
Important: The app must be running in order to run the E2E tests!
- Go to the
e2e
folder.
cd webapp/e2e
- Run the tests with:
npx jest .
Optionally, you can run the tests with the --runInBand
flag to run the tests sequentially.