From e34fc6ac5ef3edca68b62b4df98f7e82b2482ef5 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Mon, 3 Feb 2025 15:04:29 +0300 Subject: [PATCH] remove with deps flag --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1413bb1a..9e2e0c77 100644 --- a/Makefile +++ b/Makefile @@ -111,7 +111,9 @@ js-lint: ; $(NPM) $(NPM_FLAGS) run lint js-test: ; $(NPM) $(NPM_FLAGS) run test js-test-e2e: ; $(NPM) $(NPM_FLAGS) run test:e2e js-deps-e2e: - @npx playwright install --with-deps + rm -rf ~/.cache/ms-playwright + + @npx playwright install @echo "Playwright installation complete" @npx playwright --version || { echo "ERROR: Playwright installation failed"; exit 1; }