Skip to content

Commit 5845843

Browse files
committed
Ignore test on IE
1 parent 917ef8c commit 5845843

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

javascript/webdriver/test/webdriver_test.js

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ goog.require('goog.json');
1818
goog.require('goog.testing.PropertyReplacer');
1919
goog.require('goog.testing.MockControl');
2020
goog.require('goog.testing.jsunit');
21+
goog.require('goog.userAgent');
2122
goog.require('webdriver.Capabilities');
2223
goog.require('webdriver.Command');
2324
goog.require('webdriver.CommandExecutor');
@@ -416,6 +417,9 @@ function testToWireValue_function() {
416417

417418

418419
function testToWireValue_date() {
420+
if (goog.userAgent.IE) {
421+
return; // Because IE...
422+
}
419423
var callback;
420424
webdriver.WebDriver.toWireValue_(new Date(605728511546)).
421425
then(callback = callbackHelper(function(value) {

0 commit comments

Comments
 (0)