From 006e916edab6716b9cb29a47d2e613cebb0fd5c2 Mon Sep 17 00:00:00 2001 From: Siarhei Yelin Date: Fri, 29 Mar 2024 15:22:48 +0300 Subject: [PATCH] Update docs --- uui-e2e-tests/readme.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/uui-e2e-tests/readme.md b/uui-e2e-tests/readme.md index d34ea59cd8..8deadd12f6 100644 --- a/uui-e2e-tests/readme.md +++ b/uui-e2e-tests/readme.md @@ -29,7 +29,7 @@ 3. [Optional step] Change ```./.env.local``` file in order to set non-standard UUI_APP_BASE_URL #### NPM tasks to use -Note: If the tasks are run for the very first time, it might take some time to download necessary docker images. +Note: If the tasks are run for the very first time, it might take some time to download necessary docker images (about 10 min). ```shell # Run tests in docker container yarn local-test-e2e @@ -42,16 +42,16 @@ yarn local-test-e2e-report-show ``` ### Useful Podman commands +The image for UUI e2e test requires about ```2.2 Gb``` of free disk space. +The following commands can help you to check how much disk space is being used. ``` -# list all images and their sizes -podman images --all - -# show podman disk usage +# Show podman disk usage podman system df -# remove all images -podman rmi --all --force +# List all images and their sizes +podman images --all -# remove all stopped containers -podman container prune --force +# Delete all images. Usually it should not be used. +# When the e2e tests are run after deleting all images, all necessary dependencies will download again which will take some time. +podman rmi --all --force ```