From fc7d7fef5a1223e19dd52f0f0c1c2e3b0132eeda Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Mon, 26 May 2025 17:52:55 +0200 Subject: [PATCH] ov-components: replace fit with it for consistency in API directive tests --- openvidu-components-angular/e2e/api-directives.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openvidu-components-angular/e2e/api-directives.test.ts b/openvidu-components-angular/e2e/api-directives.test.ts index c00ae53d..b21981a3 100644 --- a/openvidu-components-angular/e2e/api-directives.test.ts +++ b/openvidu-components-angular/e2e/api-directives.test.ts @@ -202,7 +202,7 @@ describe('Testing API Directives', () => { expect(await utils.isPresent('#token-error')).toBeTrue(); }); - fit('should show the token error WITHOUT prejoin page', async () => { + it('should show the token error WITHOUT prejoin page', async () => { const fixedUrl = `${url}&roomName=TOKEN_ERROR&prejoin=false&participantName=PNAME`; await browser.get(`${fixedUrl}`); @@ -222,7 +222,7 @@ describe('Testing API Directives', () => { expect(await utils.isPresent('#openvidu-dialog')).toBeTrue(); }); - fit('should run the app with VIDEO DISABLED in prejoin page', async () => { + it('should run the app with VIDEO DISABLED in prejoin page', async () => { await browser.get(`${url}&prejoin=true&videoEnabled=false`); await utils.checkPrejoinIsPresent(); @@ -246,7 +246,7 @@ describe('Testing API Directives', () => { expect(await utils.getNumberOfElements('video')).toEqual(0); }); - fit('should run the app with VIDEO DISABLED and WITHOUT PREJOIN page', async () => { + it('should run the app with VIDEO DISABLED and WITHOUT PREJOIN page', async () => { await browser.get(`${url}&prejoin=false&videoEnabled=false`); await utils.checkSessionIsPresent(); @@ -262,7 +262,7 @@ describe('Testing API Directives', () => { expect(await utils.isPresent('#videocam_off')).toBeTrue(); }); - fit('should run the app with AUDIO DISABLED in prejoin page', async () => { + it('should run the app with AUDIO DISABLED in prejoin page', async () => { await browser.get(`${url}&audioEnabled=false`); await utils.checkPrejoinIsPresent(); @@ -286,7 +286,7 @@ describe('Testing API Directives', () => { expect(await utils.isPresent('#mic_off')).toBeTrue(); }); - fit('should run the app with AUDIO DISABLED and WITHOUT PREJOIN page', async () => { + it('should run the app with AUDIO DISABLED and WITHOUT PREJOIN page', async () => { await browser.get(`${url}&prejoin=false&audioEnabled=false`); await browser.sleep(1000);