Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 270 Bytes

File metadata and controls

6 lines (5 loc) · 270 Bytes

API

Run tests with docker

docker build -t "testbuild" . && docker run --name=database -d mongo:4.4.0 && docker run --name=test --link=database:database --env-file .env.test testbuild npm run test-mocha-with-coverage; docker rm test; docker rm -f database;