- Install dependencies:
pnpm install- Start database and micro-services:
docker-compose up- Start the development server:
pnpm devWrite your tests under e2e directory. You can run your tests in UI mode with:
pnpm test:openOr you can run your tests in headless mode with:
pnpm test:runIt's recommended to remove docker-compose cache and re-start the services before running tests:
docker rm $(docker ps -qa) && docker-compose up --remove-orphans --force-recreate