mirror of https://github.com/OpenVidu/openvidu.git
tests-e2e: Wait 2 seconds before clean recordings
parent
d8104ffd02
commit
414934416b
|
@ -133,6 +133,12 @@ public class OpenViduTestAppE2eTest extends AbstractOpenViduTestappE2eTest {
|
||||||
@BeforeEach()
|
@BeforeEach()
|
||||||
protected void beforeEach() {
|
protected void beforeEach() {
|
||||||
this.closeAllSessions(OV);
|
this.closeAllSessions(OV);
|
||||||
|
try {
|
||||||
|
Thread.sleep(2000);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
// TODO Auto-generated catch block
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
this.deleteAllRecordings(OV);
|
this.deleteAllRecordings(OV);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue