Skip to content

Commit

Permalink
Chagnes on js-sceen-share & vue
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailJniah committed Apr 19, 2024
1 parent 9813fda commit 7c6f634
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/openvidu-js-screen-share-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page1.waitForSelector('#session', { visible: true });
await page1.waitForTimeout(5000);

videoElements = await page1.$$('video');
var videoElements = await page1.$$('video');

expect(videoElements.length).toEqual(2);

Expand Down
2 changes: 1 addition & 1 deletion tests/openvidu-vue-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page1.click('button.btn.btn-lg.btn-success');
// Espera a que un elemento específico se vuelva visible.
await page1.waitForSelector('#session', { visible: true });
await page1.waitForTimeout(5000);ç
await page1.waitForTimeout(5000);

// Encuentra los elementos de video en la página y verifica que haya exactamente dos de ellos.
var videoElements = await page1.$$('video');
Expand Down

0 comments on commit 7c6f634

Please sign in to comment.