Unit-tests only run when the project is running in dev mode in the background. That is because the test.sh uses docker exec which assumes the container to be already running.
A more advanced test.sh should be implemented that can distinct between docker exec and docker run in case the container is not running.
Unit-tests only run when the project is running in dev mode in the background. That is because the
test.shusesdocker execwhich assumes the container to be already running.A more advanced
test.shshould be implemented that can distinct betweendocker execanddocker runin case the container is not running.