From 584584366afc2967840e7164b0981bbaa760dadf Mon Sep 17 00:00:00 2001 From: Jason Leyba Date: Fri, 31 Oct 2014 10:00:00 -0700 Subject: [PATCH] Ignore test on IE --- javascript/webdriver/test/webdriver_test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/javascript/webdriver/test/webdriver_test.js b/javascript/webdriver/test/webdriver_test.js index c04c022239a0d..cd81eb2b0df3d 100644 --- a/javascript/webdriver/test/webdriver_test.js +++ b/javascript/webdriver/test/webdriver_test.js @@ -18,6 +18,7 @@ goog.require('goog.json'); goog.require('goog.testing.PropertyReplacer'); goog.require('goog.testing.MockControl'); goog.require('goog.testing.jsunit'); +goog.require('goog.userAgent'); goog.require('webdriver.Capabilities'); goog.require('webdriver.Command'); goog.require('webdriver.CommandExecutor'); @@ -416,6 +417,9 @@ function testToWireValue_function() { function testToWireValue_date() { + if (goog.userAgent.IE) { + return; // Because IE... + } var callback; webdriver.WebDriver.toWireValue_(new Date(605728511546)). then(callback = callbackHelper(function(value) {