From 88d05d3e661011a5fbee62e3762619cdafff9b04 Mon Sep 17 00:00:00 2001 From: John McLear Date: Sun, 22 Mar 2020 11:48:53 +0000 Subject: [PATCH] tests: configure the OS/Browsers versions on which tests will be run For all the supported operating systems, the latest version of each browser is supported, with the Exception of Win 8 / IE 10, which has an explicit version pinned. --- tests/frontend/travis/remote_runner.js | 38 ++++++++++++-------------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/tests/frontend/travis/remote_runner.js b/tests/frontend/travis/remote_runner.js index 87311d905..b26915d2b 100644 --- a/tests/frontend/travis/remote_runner.js +++ b/tests/frontend/travis/remote_runner.js @@ -67,41 +67,39 @@ var sauceTestWorker = async.queue(function (testSettings, callback) { }); }, 5); //run 5 tests in parrallel -// Firefox +// 1) Firefox on Linux sauceTestWorker.push({ 'platform' : 'Linux' , 'browserName' : 'firefox' - , 'version' : '' + , 'version' : 'latest' }); -// Chrome +// 2) Chrome on Linux sauceTestWorker.push({ 'platform' : 'Linux' , 'browserName' : 'googlechrome' - , 'version' : '' + , 'version' : 'latest' }); -/* -// IE 8 +// 3) Safari on OSX 10.15 sauceTestWorker.push({ - 'platform' : 'Windows 2003' - , 'browserName' : 'iexplore' - , 'version' : '8' -}); -*/ - -// IE 9 -sauceTestWorker.push({ - 'platform' : 'Windows XP' - , 'browserName' : 'iexplore' - , 'version' : '9' + 'platform' : 'OS X 10.15' + , 'browserName' : 'safari' + , 'version' : '13' }); -// IE 10 +// 4) IE 10 on Win 8 sauceTestWorker.push({ - 'platform' : 'Windows 2012' + 'platform' : 'Windows 8' , 'browserName' : 'iexplore' - , 'version' : '10' + , 'version' : '10.0' +}); + +// 5) Edge on Win 10 +sauceTestWorker.push({ + 'platform' : 'Windows 10' + , 'browserName' : 'microsoftedge' + , 'version' : 'latest' }); sauceTestWorker.drain = function() {