Skip to content

Commit 8b1d73e

Browse files
committed
test
1 parent 4da1611 commit 8b1d73e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

driver-bundle/src/main/java/com/microsoft/playwright/impl/driver/jar/DriverJar.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ public DriverJar() throws IOException {
4040
driverTempDir = alternativeTmpdir == null
4141
? Files.createTempDirectory(prefix)
4242
: Files.createTempDirectory(Paths.get(alternativeTmpdir), prefix);
43-
driverTempDir.toFile().deleteOnExit();
4443
String nodePath = System.getProperty("playwright.nodejs.path");
4544
if (nodePath != null) {
4645
preinstalledNodePath = Paths.get(nodePath);
@@ -87,10 +86,11 @@ private void installBrowsers(Map<String, String> env) throws IOException, Interr
8786
}
8887
ProcessBuilder pb = createProcessBuilder();
8988
pb.command().add("install");
89+
logMessage("Executing: " + String.join(" ", pb.command()));
9090
pb.redirectError(ProcessBuilder.Redirect.INHERIT);
9191
pb.redirectOutput(ProcessBuilder.Redirect.INHERIT);
9292
Process p = pb.start();
93-
boolean result = p.waitFor(10, TimeUnit.MINUTES);
93+
boolean result = p.waitFor(30, TimeUnit.MINUTES);
9494
if (!result) {
9595
p.destroy();
9696
throw new RuntimeException("Timed out waiting for browsers to install");

playwright/src/test/java/com/microsoft/playwright/TraceViewerFixture.java

Whitespace-only changes.

0 commit comments

Comments
 (0)