e2e-tests: Delay browser setup

This commit is contained in:
cruizba 2024-12-10 00:13:41 +01:00
parent c1149079c8
commit 1faf9dbe8b

View File

@ -472,6 +472,12 @@ public class OpenViduTestE2e {
}
if (!containerAlreadyRunning) {
container.start();
try {
// Avoid error starting container
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
containers.add(container);
return true;
}