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

Fixed tests according to https://github.com/ckeditor/ckeditor5-typing/issues/17.

Kamil Piechaczek 9 лет назад
Родитель
Сommit
26c4b13b5b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-editor-classic/tests/manual/classic.js

+ 1 - 1
packages/ckeditor5-editor-classic/tests/manual/classic.js

@@ -12,7 +12,7 @@ let editor, editable, observer;
 
 function initEditor() {
 	ClassicEditor.create( document.querySelector( '#editor' ), {
-		features: [ 'delete', 'enter', 'typing', 'paragraph', 'undo', 'headings', 'basic-styles/bold', 'basic-styles/italic' ],
+		features: [ 'enter', 'typing', 'paragraph', 'undo', 'headings', 'basic-styles/bold', 'basic-styles/italic' ],
 		toolbar: [ 'headings', 'bold', 'italic', 'undo', 'redo' ]
 	} )
 	.then( newEditor => {