Skip to content

Commit

Permalink
fix: pin version of Android platform
Browse files Browse the repository at this point in the history
By default, the `deviceName` is set to `Android Emulator` [1], but it does not work with
Android 7+, since there is no such device for those versions [2].

We'll possibly have to migrate to karma, since zuul does not seem maintained anymore [3].

[1] https://wiki.saucelabs.com/display/DOCS/Test+Configuration+Options#TestConfigurationOptions-BrowserName
[2] https://saucelabs.com/rest/v1/info/browsers/webdriver
[3] defunctzombie/zuul#320
  • Loading branch information
darrachequesne committed Nov 2, 2018
1 parent b3b7afd commit 4a47cf5
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@ module.exports = {
version: '-2..latest'
}, {
name: 'android',
version: '-2..latest',
platform: 'Android'
version: '5.1..6.0'
}, {
name: 'ipad',
version: '-2..latest'
}, {
name: 'microsoftedge',
name: 'MicrosoftEdge',
version: 'latest'
}
],
Expand All @@ -40,8 +39,7 @@ module.exports = {
version: 'latest'
}, {
name: 'android',
version: 'latest',
platform: 'Android'
version: '6.0'
}
]
};

0 comments on commit 4a47cf5

Please sign in to comment.