diff --git a/content/en/contribute/code/core/automated-tests.md b/content/en/contribute/code/core/automated-tests.md index f9b0b1324..367da24a1 100644 --- a/content/en/contribute/code/core/automated-tests.md +++ b/content/en/contribute/code/core/automated-tests.md @@ -225,6 +225,20 @@ Try the following: - Manually downloaded the images. To download images manually, you can use either docker-compose or docker: - With docker, you'd do a docker pull for every image you want to download. - With docker-compose, you'd save all docker-compose files in a folder, do a docker-compose pull, and point to your files as a source. Read more on [docker compose pull](https://docs.docker.com/engine/reference/commandline/compose_pull/) + +If you experience errors such as: + +``` +A user session timing out while running the test. +``` + +Try running the following commands: +- `docker system prune` +- `docker image prune -a` +- `docker volume prune -a` +- `docker network prune` + +Repeat the above steps until all data has been deleted. ### Test Architecture