openvidu-components: make stronger e2e test

pull/743/head
csantosm 2022-07-15 15:20:41 +02:00
parent bfb350d3df
commit fda25021f2
1 changed files with 4 additions and 0 deletions

View File

@ -542,6 +542,10 @@ describe('Testing PANEL STRUCTURAL DIRECTIVES', () => {
// Check if custom panel is present
element = await browser.findElements(By.id('custom-activities-panel'));
expect(element.length).equals(1);
// Check if activities panel is has content
element = await browser.findElements(By.id('activities-container'));
expect(element.length).equals(1);
});
it('should inject an ADDITIONAL PANEL only', async () => {