e2e-tests: Delay browser setup

v2
cruizba 2024-12-10 00:13:41 +01:00
parent c1149079c8
commit 1faf9dbe8b
1 changed files with 6 additions and 0 deletions

View File

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