tests-e2e: Wait 2 seconds before clean recordings

v2compatibility
Carlos Santos 2024-12-10 13:54:03 +01:00
parent d8104ffd02
commit 414934416b
1 changed files with 6 additions and 0 deletions

View File

@ -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);
} }