8
0
Quellcode durchsuchen

Tests: Update test to the latest changes in dev-utils API.

Maciej Gołaszewski vor 7 Jahren
Ursprung
Commit
56d9201ca2
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3 1
      packages/ckeditor5-undo/tests/undoediting-integration.js

+ 3 - 1
packages/ckeditor5-undo/tests/undoediting-integration.js

@@ -59,7 +59,9 @@ describe( 'UndoEditing integration', () => {
 	}
 
 	function input( input ) {
-		setData( model, input );
+		model.enqueueChange( 'transparent', () => {
+			setData( model, input );
+		} );
 	}
 
 	function output( output ) {