This is an example repository that demonstrates how to test MongoDB and PostgreSQL databases with Docker containers using Vitest.
When Vitest is started, and before the tests are executed, we create two docker database containers (MongoDB and PostgreSQL) each test file (Vitest Worker) gets a new database inside the container.
If the detected OS is Linux, we use the tmpfs
file system inside the containers which increases the speed of execution since in that case all database data is held in memory.
- Before each test, the database is seeded.
- After each test, the database is cleared.
- When all tests in the file are done, the database is discarded.
- When Vitest is done running all the tests, database containers are stopped and removed.
Vitest watch mode is supported, in that case, everything works that same, but database containers will not be stopped and removed until you exit watch mode.
Github actions file is included. Default Ubuntu Github Actions image comes with Docker preinstalled so there are no issues running the tests in a continuous integration environment.
I will eventually write a blog post detailing the whole setup process. You can follow me on Twitter or on Dev.to to be notified of new blog posts.
I use this setup in my projects, so this repository will be kept up to date.
If you have suggestions on how this process could be improved, feel free to open an issue or pull a request.
There is also a Jest setup, but I'm not maintaining that one anymore.