-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add protocol argument to browser-proxy, allowing run using https for …
…Android devices (#211) * Included the target protocol in the browser proxy, which is used when run in an Android device and fixed the test that validate the common browsers with a not existing iPhone version * Update the Iphone SE test case name for the browser-names-test.js 'Should validate browser names' * Removing comments from the browser-names-test.js --------- Co-authored-by: MarceloArraes <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ describe('Browser names', function () { | |
'[email protected]:Windows 8', | ||
'[email protected]:Windows 8.1', | ||
'[email protected]:Windows 10', | ||
'iPhone SE@11', | ||
'iPhone SE 2020@13', | ||
'iPhone XR@12', | ||
'Google Pixel [email protected]' | ||
]; | ||
|
@@ -41,7 +41,7 @@ describe('Browser names', function () { | |
'[email protected]:Windows 8.1', | ||
'[email protected]:Windows 10', | ||
'iPhone 7@10', | ||
'iPhone SE@11', | ||
'iPhone SE 2020@13', | ||
'iPhone XR@12', | ||
'Google Pixel [email protected]' | ||
]; | ||
|
@@ -63,7 +63,7 @@ describe('Browser names', function () { | |
'[email protected]:Windows 7': true, | ||
'[email protected]:Windows 8': true, | ||
'[email protected]:Windows 10': true, | ||
'iPhone SE': true, | ||
'iPhone SE 2020': true, | ||
'Google Pixel 7': true, | ||
'[email protected]': false, | ||
'ie@11:os x': false | ||
|