Skip to content

Commit

Permalink
fix(makefile): docker-seed to start services
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienjoly committed Dec 29, 2023
1 parent c401797 commit 998607b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Expand Up @@ -41,9 +41,10 @@ lint: node_modules public/js/bookmarklet.js ## Run static code checks
npm run lint:fix

docker-seed: ## (Re)initializes the test db and restart Openwhyd's docker container
docker-compose exec -T web npm run test-reset
docker-compose restart web
docker-compose exec -T web ./scripts/wait-for-http-server.sh 8080
docker compose up --detach --build mongo web
docker compose exec -T web npm run test-reset
docker compose restart web
docker compose exec -T web ./scripts/wait-for-http-server.sh 8080

test: lint test-unit test-integration test-e2e test-approval test-in-docker ## Run all checks and tests

Expand Down

0 comments on commit 998607b

Please sign in to comment.