Skip to content

Commit

Permalink
Merge pull request #4925 from ckeditor/t/4885-ignore-tests
Browse files Browse the repository at this point in the history
Ignore failing tests on safari due to #4885
  • Loading branch information
jacekbogdanski authored Oct 7, 2021
2 parents b1a0914 + 156089b commit a5f581b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/plugins/clipboard/drop.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,10 @@ var testsForMultipleEditor = {

// #(2292)
'test internal drag and drop on editors margin': function( editor ) {
// Ignored due to #4885
if ( CKEDITOR.env.safari ) {
assert.ignore();
}
var evt = bender.tools.mockDropEvent(),
isWindows = navigator.userAgent.toLowerCase().indexOf( 'windows' ) !== -1,
newLine = CKEDITOR.env.gecko && CKEDITOR.env.version >= 69 && isWindows ?
Expand Down
5 changes: 5 additions & 0 deletions tests/plugins/widget/widgetsintegration.js
Original file line number Diff line number Diff line change
Expand Up @@ -1138,6 +1138,11 @@
html: '<div id="w1" data-widget="test3">test3</div>',

init: function( editor ) {
// Ignored due to #4885
if ( CKEDITOR.env.safari ) {
assert.ignore();
}

var widget = getWidgetById( editor, 'w1' );

widget.focus();
Expand Down

0 comments on commit a5f581b

Please sign in to comment.