Skip to content

Commit

Permalink
Ignore test on IE
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyba committed Oct 31, 2014
1 parent 917ef8c commit 5845843
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions javascript/webdriver/test/webdriver_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 5845843

Please sign in to comment.