remote_runner: Update browser list

Use latest versions of Chrome, Firefox, Safari, and Edge. Keep the old
Chrome version.
pull/5020/head
Richard Hansen 2021-05-03 00:18:47 -04:00
parent a7cd0a4b25
commit 081f739a8d
1 changed files with 14 additions and 13 deletions

View File

@ -72,15 +72,26 @@ const sauceTestWorker = async.queue(async ({name, pfx, testSettings}) => {
Promise.all([
{
platform: 'OS X 10.15',
platform: 'macOS 11.00',
browserName: 'safari',
version: '13.1',
version: 'latest',
},
...(isAdminRunner ? [] : [
{
platform: 'Windows 10',
browserName: 'firefox',
version: '84.0',
version: 'latest',
},
{
platform: 'Windows 10',
browserName: 'MicrosoftEdge',
version: 'latest',
},
{
platform: 'Windows 10',
browserName: 'chrome',
version: 'latest',
args: ['--use-fake-device-for-media-stream'],
},
{
platform: 'Windows 7',
@ -88,16 +99,6 @@ Promise.all([
version: '55.0',
args: ['--use-fake-device-for-media-stream'],
},
{
platform: 'Windows 10',
browserName: 'microsoftedge',
version: '83.0',
},
{
platform: 'Windows 7',
browserName: 'firefox',
version: '78.0',
},
]),
].map(async (testSettings) => {
const name = `${testSettings.browserName} ${testSettings.version}, ${testSettings.platform}`;