Skip to content

Commit

Permalink
fixing Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailJniah committed Apr 19, 2024
1 parent 8e7e397 commit e2a9b38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openvidu-vue-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: results-react
name: results-vue
path: /home/runner/work/openvidu-tutorials-tests-playwright/openvidu-tutorials-tests-playwright/results/
retention-days: 30
2 changes: 1 addition & 1 deletion tests/openvidu-iframe-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await frame.click('input[type="submit"]');
await frame.waitForSelector('#session', { visible: true });

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

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

Expand Down
2 changes: 1 addition & 1 deletion tests/openvidu-recording-java-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('#join-btn');
await page1.waitForSelector('#session', { visible: true });

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

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

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 @@ -22,7 +22,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a
await page1.click('button.btn.btn-lg.btn-success');
await page1.waitForSelector('#session', { visible: true });

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

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

Expand Down

0 comments on commit e2a9b38

Please sign in to comment.