8
0
Просмотр исходного кода

Removed too much time consuming test - too long for CI.

Oskar Wróbel 6 лет назад
Родитель
Сommit
0ef92a5207
1 измененных файлов с 0 добавлено и 15 удалено
  1. 0 15
      packages/ckeditor5-engine/tests/model/differ.js

+ 0 - 15
packages/ckeditor5-engine/tests/model/differ.js

@@ -90,21 +90,6 @@ describe( 'Differ', () => {
 			} );
 		} );
 
-		// https://github.com/ckeditor/ckeditor5/issues/1875.
-		it( 'a character to a large node', () => {
-			root._appendChild( [
-				new Element( 'paragraph', null, [
-					new Text( 'a'.repeat( 1000000 ) )
-				] )
-			] );
-
-			const position = new Position( root, [ 2, 500000 ] );
-
-			expect( () => {
-				model.change( () => insert( new Text( 'x' ), position ) );
-			} ).to.not.throw();
-		} );
-
 		it( 'multiple characters', () => {
 			const position = new Position( root, [ 0, 2 ] );