try paralelize registrations?

This commit is contained in:
Valere
2026-04-21 18:36:40 +02:00
parent 754a42ffd1
commit 0e2d2c6f72
3 changed files with 17 additions and 11 deletions
+4 -2
View File
@@ -26,8 +26,10 @@ modePairs.forEach(([rtcMode1, rtcMode2]) => {
"The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled",
);
const florian = await addUser("floriant", HOST1);
const timo = await addUser("timo", HOST2);
const [florian, timo] = await Promise.all([
addUser("florian", HOST1),
addUser("timo", HOST2),
]);
const roomName = "Call Room";