mirror of https://github.com/OpenVidu/openvidu.git
openvidu-test-e2e: delete recordings folder on @BeforeAll
parent
b6ac6461d6
commit
9cdda819b9
|
@ -130,6 +130,13 @@ public class OpenViduTestAppE2eTest {
|
||||||
OPENVIDU_SECRET = openvidusecret;
|
OPENVIDU_SECRET = openvidusecret;
|
||||||
}
|
}
|
||||||
log.info("Using secret {} to connect to openvidu-server", OPENVIDU_SECRET);
|
log.info("Using secret {} to connect to openvidu-server", OPENVIDU_SECRET);
|
||||||
|
|
||||||
|
try {
|
||||||
|
log.info("Deleting folder /opt/openvidu/recordings");
|
||||||
|
FileUtils.deleteDirectory(new File("/opt/openvidu/recordings"));
|
||||||
|
} catch (IOException e) {
|
||||||
|
log.error(e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void setupBrowser(String browser) {
|
void setupBrowser(String browser) {
|
||||||
|
|
Loading…
Reference in New Issue