Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix The Test Client (Mobile) #8044

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-client-mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
uses: ./.github/workflows/test-client.yml
with:
test-script: 'npx gulp test-client-travis-mobile-run --steps-as-tasks'
browsers: '["android", "safari"]'
browsers: '["chrome", "safari"]'
secrets: inherit
4 changes: 4 additions & 0 deletions .github/workflows/test-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
CLIENT_TESTS_CURRENT_BROWSER: ${{ matrix.browser }}
# NOTE: Test server on Android Emulator 7.1 and later can be accessed only via hostname.
# We are forced to add this variable to say the 'qunit-harness' module uses the hostname for the test server URL.
# https://github.com/AlexanderMoskovkin/qunit-harness/blob/master/src/index.js#L119
TRAVIS: true
steps:
- uses: DevExpress/testcafe-build-system/actions/set-status@main
with:
Expand Down
8 changes: 4 additions & 4 deletions gulp/constants/client-test-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ const CLIENT_TESTS_DESKTOP_BROWSERS = [

const CLIENT_TESTS_MOBILE_BROWSERS = [
{
platform: 'Linux',
browserName: 'android',
version: '6.0',
deviceName: 'Android Emulator',
deviceName: 'Android GoogleAPI Emulator',
browserName: 'Chrome',
platformVersion: '7.1',
platformName: 'Android',
},
{
platform: 'iOS',
Expand Down
Loading