ov-components: update test to focus on VIDEO DISABLED scenario in prejoin page

master
Carlos Santos 2025-05-20 17:33:03 +02:00
parent 1d3cba9517
commit 920bba1bf3
1 changed files with 4 additions and 4 deletions

View File

@ -220,7 +220,7 @@ describe('Testing API Directives', () => {
expect(await utils.isPresent('#openvidu-dialog')).toBeTrue();
});
it('should run the app with VIDEO DISABLED in prejoin page', async () => {
fit('should run the app with VIDEO DISABLED in prejoin page', async () => {
await browser.get(`${url}&prejoin=true&videoEnabled=false`);
await utils.checkPrejoinIsPresent();
@ -235,11 +235,11 @@ describe('Testing API Directives', () => {
await utils.checkSessionIsPresent();
await utils.waitForElement('#video-poster');
expect(await utils.getNumberOfElements('video')).toEqual(0);
await utils.waitForElement('#videocam_off');
expect(await utils.isPresent('#videocam_off')).toBeTrue();
await utils.waitForElement('#video-poster');
expect(await utils.getNumberOfElements('video')).toEqual(0);
});
it('should run the app with VIDEO DISABLED and WITHOUT PREJOIN page', async () => {