Hey guys I am working on a project with a React.js front end and a Express backend. The front end uses Jest testing and the back uses Mocha testing. The project is Dockerized. I was wondering what the best way to test a project is like this? I tried running
docker-compose up
but is said…
Too long with no output (exceeded 10m0s)
The project uses a MySQL and Redis database and I dont think I can run the container to exec into the container to run the tests so an alternative would be to create a Redis and MySQL database through CircleCI but I feel that is redundant when there is already a Docker container with the entire environment. What do you think would be the best way to go about setting up testing in production deployments?