From 7d4d170ce46a53084a41920c5c7387c131357989 Mon Sep 17 00:00:00 2001 From: Nils Knappmeier Date: Mon, 15 Feb 2021 09:59:41 +0100 Subject: [PATCH] disable IE in Saucelabs tests The SauceLabs IE setup has problems and does not work with the endpoints that we use to run them. This is a Saucelabs problem, but it has been there for a year now. Until we use another API, I will simply remove the browsers --- Gruntfile.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 528c0af82..ac9bf3f8d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -177,19 +177,19 @@ module.exports = function(grunt) { concurrency: 4, browsers: [ { browserName: 'chrome' }, - { browserName: 'firefox', platform: 'Linux' }, + { browserName: 'firefox', platform: 'Linux' } // {browserName: 'safari', version: 9, platform: 'OS X 10.11'}, // {browserName: 'safari', version: 8, platform: 'OS X 10.10'}, - { - browserName: 'internet explorer', - version: 11, - platform: 'Windows 8.1' - }, - { - browserName: 'internet explorer', - version: 10, - platform: 'Windows 8' - } + // { + // browserName: 'internet explorer', + // version: 11, + // platform: 'Windows 8.1' + // }, + // { + // browserName: 'internet explorer', + // version: 10, + // platform: 'Windows 8' + // } ] } },