Skip to content

Updated Android 4 SauceLabs configuration #4672

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

Merged
merged 3 commits into from
Jan 12, 2017
Merged
Changes from 2 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
11 changes: 8 additions & 3 deletions build/karma.sauce.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,12 @@ var batches = [
browserName: 'iphone',
version: '9.3'
},
sl_android_4_2: {
sl_android_4_4: {
base: 'SauceLabs',
browserName: 'android',
version: '4.2'
browserName: 'Browser',
platform: 'Android',
version: '4.4',
device: 'Android Emulator',
},
sl_android_5_1: {
base: 'SauceLabs',
Expand All @@ -88,6 +90,9 @@ module.exports = function (config) {
sauceLabs: {
testName: 'Vue.js unit tests',
recordScreenshots: false,
connectOptions: {
'no-ssl-bump-domains': 'all', // Ignore SSL error on Android emulator
Copy link
Contributor Author

@jlmakes jlmakes Jan 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In my testing, it's only the Android 4 emulator, so for what it's worth it could be set explicitly for google domains:

'no-ssl-bump-domains': '*google.com'

},
build: process.env.CIRCLE_BUILD_NUM || process.env.SAUCE_BUILD_ID || Date.now()
},
// mobile emulators are really slow
Expand Down