We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 917ef8c commit 5845843Copy full SHA for 5845843
javascript/webdriver/test/webdriver_test.js
@@ -18,6 +18,7 @@ goog.require('goog.json');
18
goog.require('goog.testing.PropertyReplacer');
19
goog.require('goog.testing.MockControl');
20
goog.require('goog.testing.jsunit');
21
+goog.require('goog.userAgent');
22
goog.require('webdriver.Capabilities');
23
goog.require('webdriver.Command');
24
goog.require('webdriver.CommandExecutor');
@@ -416,6 +417,9 @@ function testToWireValue_function() {
416
417
418
419
function testToWireValue_date() {
420
+ if (goog.userAgent.IE) {
421
+ return; // Because IE...
422
+ }
423
var callback;
424
webdriver.WebDriver.toWireValue_(new Date(605728511546)).
425
then(callback = callbackHelper(function(value) {
0 commit comments