Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailJniah committed Apr 19, 2024
1 parent 1d9ac57 commit e2ec6e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openvidu-recording-java-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11' # Puedes cambiar la versión de Java según tus necesidades
java-version: '11'


- name: Run server application sample
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/openvidu-recording-node-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:

run: |
cd openvidu-recording-node
npm install
node server.js http://localhost:4443 MY_SECRET > ../results/logs/node_server.log 2>&1 &
sudo npm install
sudo node server.js http://localhost:4443 MY_SECRET > ../results/logs/node_server.log 2>&1 &
sleep 10
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion tests/openvidu-js-web-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { test, expect, chromium } = require('@playwright/test');
test('Checking for the presence of two active webcams in an OpenVidu session', async () => {
// Launch a headless Chromium browser with specific settings.
const browser = await chromium.launch({
headless: false,
headless: true,
deviceScaleFactor: 1, // Specify the page's scale factor
userAgent: 'Chrome/88.0.4324.182', // Specify the user agent
args: ["--use-fake-ui-for-media-stream", "--use-fake-device-for-media-stream"]
Expand Down

0 comments on commit e2ec6e7

Please sign in to comment.