Skip to content

Commit

Permalink
Tests rename
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-stv committed Sep 14, 2023
1 parent b92c701 commit c4a0245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ckeditor5-clipboard/tests/dragdropexperimental.js
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,7 @@ describe( 'Drag and Drop experimental', () => {
expect( numberOfCkContentElements ).to.equal( 2 );
} );

it( 'should show preview with custom implementation', () => {
it( 'should show preview with custom implementation if drag element outside the editing root', () => {
setModelData( editor.model, '<paragraph>[Foo.]</paragraph><horizontalLine></horizontalLine>' );

const dataTransfer = createDataTransfer( {} );
Expand Down Expand Up @@ -1485,7 +1485,7 @@ describe( 'Drag and Drop experimental', () => {
sinon.assert.calledOnce( spy );
} );

it( 'should show preview with browser implementation', () => {
it( 'should show preview with browser implementation if drag element inside the editing root', () => {
setModelData( editor.model, '<paragraph>[Foo.]</paragraph><horizontalLine></horizontalLine>' );

const dataTransfer = createDataTransfer( {} );
Expand Down

0 comments on commit c4a0245

Please sign in to comment.