You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/12/18 18:13:43 UTC

[couchdb-esprima] 03/03: Cross-browser tests: temporarily exclude Internet Explorer 9

This is an automated email from the ASF dual-hosted git repository.

davisp pushed a commit to branch 2.x
in repository https://gitbox.apache.org/repos/asf/couchdb-esprima.git

commit f1ef826d3bab3f38df43e63e8bfd78c3ee6ef232
Author: Ariya Hidayat <ar...@gmail.com>
AuthorDate: Fri Aug 26 06:54:13 2016 -0700

    Cross-browser tests: temporarily exclude Internet Explorer 9
    
    From the most recent Sauce Labs runs, IE 9 failed to launch.
    It is either the problem with IE 9 or Windows 7 or both.
    
    Closes ghi-1531
---
 test/saucelabs-ie.conf.js | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/test/saucelabs-ie.conf.js b/test/saucelabs-ie.conf.js
index 1a2e7ae..c1cd469 100644
--- a/test/saucelabs-ie.conf.js
+++ b/test/saucelabs-ie.conf.js
@@ -14,13 +14,16 @@ module.exports = function (config) {
             browserName: 'internet explorer',
             platform: 'Windows 7',
             version: '10.0'
-        },
+        }
+
+        /*
         IE_9: {
             base: 'SauceLabs',
             browserName: 'internet explorer',
             platform: 'Windows 7',
             version: '9.0'
         }
+        */
     });
 
 }