mirror of https://github.com/OpenVidu/openvidu.git
openvidu-test-e2e: remoteRecordAudioOnlyVideoOnlyTest fixed
parent
c51aa7ca91
commit
83f0b13d69
|
@ -179,7 +179,7 @@ public class RecordingManager {
|
|||
throw e;
|
||||
}
|
||||
this.updateRecordingManagerCollections(session, recording);
|
||||
if (!OutputMode.COMPOSED.equals(properties.outputMode()) && properties.hasVideo()) {
|
||||
if (!(OutputMode.COMPOSED.equals(properties.outputMode()) && properties.hasVideo())) {
|
||||
// Directly send recording started notification for all cases except for
|
||||
// COMPOSED recordings with video (will be sent on first RECORDER subscriber)
|
||||
this.sessionHandler.sendRecordingStartedNotification(session, recording);
|
||||
|
|
|
@ -1378,7 +1378,7 @@ public class OpenViduTestAppE2eTest {
|
|||
user2.getDriver().findElements(By.className("join-btn")).forEach(el -> el.sendKeys(Keys.ENTER));
|
||||
|
||||
try {
|
||||
user2.getEventManager().waitUntilEventReaches("connectionCreated", 4);
|
||||
user2.getEventManager().waitUntilEventReaches("connectionCreated", 8);
|
||||
user2.getEventManager().waitUntilEventReaches("accessAllowed", 2);
|
||||
user2.getEventManager().waitUntilEventReaches("streamCreated", 8);
|
||||
user2.getEventManager().waitUntilEventReaches("streamPlaying", 8);
|
||||
|
@ -1425,7 +1425,7 @@ public class OpenViduTestAppE2eTest {
|
|||
// Join Chrome users
|
||||
user.getDriver().findElements(By.className("join-btn")).forEach(el -> el.sendKeys(Keys.ENTER));
|
||||
|
||||
user.getEventManager().waitUntilEventReaches("connectionCreated", 4);
|
||||
user.getEventManager().waitUntilEventReaches("connectionCreated", 8);
|
||||
user.getEventManager().waitUntilEventReaches("accessAllowed", 2);
|
||||
user.getEventManager().waitUntilEventReaches("streamCreated", 8);
|
||||
user.getEventManager().waitUntilEventReaches("streamPlaying", 8);
|
||||
|
|
Loading…
Reference in New Issue