b5bd5754a1
(cherry picked from commit d82cef50e99e9da6f0d6b94f2bd950bf063d6400)
19 lines
507 B
JavaScript
19 lines
507 B
JavaScript
const Page = require('./page');
|
|
const HotkeysMicFirstTestPage = require('./page-hotkeys-mic-first');
|
|
|
|
test("Tests hotkeys when a user first joins a meeting with a microphone: Leaving audio, rejoining as Listen Only, then rejoining with microphone", async () =>
|
|
{
|
|
var test = new HotkeysMicFirstTestPage();
|
|
try
|
|
{
|
|
await test.init(Page.getArgs());
|
|
await test.test();
|
|
await test.close();
|
|
}
|
|
catch(e)
|
|
{
|
|
console.log(e);
|
|
await test.close();
|
|
throw new Error("Test failed");
|
|
}
|
|
}); |