Skip to content

Commit

Permalink
test(element.disabled): skip in IE10 on BrowserStack
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneyrehm committed Jul 25, 2016
1 parent 8659dc0 commit 05c9bed
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/functional/element.disabled.test.js
Expand Up @@ -32,7 +32,12 @@ define(function(require) {
.setFindTimeout(timeout)
.setExecuteAsyncTimeout(timeout)
// wait until we're really initialized
.then(pollUntil('return window.platform'));
.then(pollUntil('return window.platform'))
.then(function(platform) {
if (platform.is.IE10) {
this.skip('This Test will not run on BrowserStack in IE10');
}
}.bind(this));
},

'skips disabled elements': function() {
Expand Down

0 comments on commit 05c9bed

Please sign in to comment.