Skip to content

Commit

Permalink
disabled cut test for edge since it was failing at random
Browse files Browse the repository at this point in the history
  • Loading branch information
spocke committed Aug 11, 2017
1 parent cd8d58d commit 1e622e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/paste/src/test/js/webdriver/CutTest.js
Expand Up @@ -30,8 +30,8 @@ asynctest(
var api = TinyApis(editor);
var ui = TinyUi(editor);

// Cut doesn't seem to work in webdriver mode on ie, firefox is producing moveto not supported
Pipeline.async({}, (platform.browser.isIE() || platform.browser.isFirefox()) ? [] : [
// Cut doesn't seem to work in webdriver mode on ie, firefox is producing moveto not supported, edge fails if it's not observed
Pipeline.async({}, (platform.browser.isIE() || platform.browser.isFirefox() || platform.browser.isEdge()) ? [] : [
api.sSetContent('<p>abc</p>'),
api.sSetSelection([0, 0], 1, [0, 0], 2),
ui.sClickOnMenu("Click Edit menu", 'button:contains("Edit")'),
Expand Down

0 comments on commit 1e622e4

Please sign in to comment.