mirror of https://github.com/OpenVidu/openvidu.git
e2e-tests: Delay browser setup
parent
c1149079c8
commit
1faf9dbe8b
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue