Skip to content

Commit

Permalink
Run linux test on testfile:8080 (alias for localhost) to fix the linu…
Browse files Browse the repository at this point in the history
…x test run
  • Loading branch information
michhyun1 committed Dec 10, 2024
1 parent a6c7a09 commit 6fc3fad
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
6 changes: 2 additions & 4 deletions .github/actions/setup-integration-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ runs:
- name: Clean Install
run: npm ci
shell: bash
- name: Add localhost 8080 host to /etc/hosts for Linux only
- name: Add testsite host to /etc/hosts for Linux only (fixes 500 internal error when loading the test page)
shell: bash
if: runner.os == 'Linux'
run: |
sudo echo "127.0.0.1 testsite" | sudo tee -a /etc/hosts
sudo echo "127.0.0.1 testsite" | sudo tee -a /etc/hosts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noOfThreads": 1,
"testImpl": "AudioTest.js",
"payload": {
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "ContentShareScreenCapture.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noOfThreads": 1,
"testImpl": "ContentShareVideoTest.js",
"payload": {
"url": "http://localhost:8080/",
"url": "http://testsite:8080/",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "DataMessageTest.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "MeetingEndTest.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noOfThreads": 1,
"testImpl": "VideoTest.js",
"payload":{
"url": "http://localhost:8080/?earlyConnect=1",
"url": "http://testsite:8080/?earlyConnect=1",
"retry": 2
}
}
Expand Down

0 comments on commit 6fc3fad

Please sign in to comment.