From f0bcb3ac0339941bde9268c2ca157727eccfc8c5 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Mon, 26 May 2025 18:38:25 +0200 Subject: [PATCH] ov-components:remove unnecessary screenshot logging in API directive tests --- openvidu-components-angular/e2e/api-directives.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/openvidu-components-angular/e2e/api-directives.test.ts b/openvidu-components-angular/e2e/api-directives.test.ts index 035bbbc0..f43d8a38 100644 --- a/openvidu-components-angular/e2e/api-directives.test.ts +++ b/openvidu-components-angular/e2e/api-directives.test.ts @@ -241,8 +241,6 @@ describe('Testing API Directives', () => { await utils.waitForElement('#videocam_off'); expect(await utils.isPresent('#videocam_off')).toBeTrue(); - console.log('data:image/png;base64,' + (await browser.takeScreenshot())); - await utils.waitForElement('#video-poster'); expect(await utils.getNumberOfElements('video')).toEqual(0); }); @@ -279,7 +277,6 @@ describe('Testing API Directives', () => { await utils.clickOn('#join-button'); await utils.checkSessionIsPresent(); - console.log('data:image/png;base64,' + (await browser.takeScreenshot())); expect(await utils.getNumberOfElements('video')).toEqual(1); expect(await utils.getNumberOfElements('audio')).toEqual(0);