fix: Makefile test runner

This commit is contained in:
Tom Moor 2020-07-11 12:41:48 -07:00
parent 9951cbf194
commit bfea742650
1 changed files with 4 additions and 2 deletions

View File

@ -8,10 +8,12 @@ build:
docker-compose build --pull outline
test:
docker-compose run --rm outline yarn test
docker-compose up -d redis postgres s3
yarn test
watch:
docker-compose run --rm outline yarn test:watch
docker-compose up -d redis postgres s3
yarn test:watch
destroy:
docker-compose stop