From e04ef2132ccc453fd2928624e086703c3347e6e9 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 13 May 2022 15:31:37 -0700 Subject: [PATCH] test: make install test not skip browser downloads (#931) --- .../src/test/java/com/microsoft/playwright/TestInstall.java | 1 + 1 file changed, 1 insertion(+) diff --git a/driver-bundle/src/test/java/com/microsoft/playwright/TestInstall.java b/driver-bundle/src/test/java/com/microsoft/playwright/TestInstall.java index 2135835a..bac00056 100644 --- a/driver-bundle/src/test/java/com/microsoft/playwright/TestInstall.java +++ b/driver-bundle/src/test/java/com/microsoft/playwright/TestInstall.java @@ -50,6 +50,7 @@ public class TestInstall { env.put("PLAYWRIGHT_DOWNLOAD_HOST", "https://127.0.0.127"); // Make sure the browsers are not installed yet by pointing at an empty dir. env.put("PLAYWRIGHT_BROWSERS_PATH", tmpDir.toString()); + env.put("PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD", "false"); assertThrows(RuntimeException.class, () -> Driver.ensureDriverInstalled(env, true)); assertThrows(RuntimeException.class, () -> Driver.ensureDriverInstalled(env, true));