- Install dependencies:
pnpm install
- Start database and micro-services:
docker-compose up
- Start the development server:
pnpm dev
Write your tests under e2e
directory. You can run your tests in UI mode with:
pnpm test:open
Or you can run your tests in headless mode with:
pnpm test:run
It'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