Skip to content

Commit

Permalink
Removed obsolete import in the list properties manual test.
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Mar 8, 2022
1 parent fb0977e commit 49e175d
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions packages/ckeditor5-list/tests/manual/list-properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/

/* globals console, document */
/* globals CKEditorInspector, console, document */

import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
Expand All @@ -21,7 +21,6 @@ import TodoList from '../../src/todolist';
import RemoveFormat from '@ckeditor/ckeditor5-remove-format/src/removeformat';
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
import CKEditorInspector from '@ckeditor/ckeditor5-inspector';

const config = {
initialData: `
Expand Down Expand Up @@ -86,7 +85,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'a': editor } );
CKEditorInspector.attach( { 'Styles + Start index + Reversed': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand All @@ -104,7 +103,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'b': editor } );
CKEditorInspector.attach( { 'Styles + Start index': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand All @@ -122,7 +121,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'c': editor } );
CKEditorInspector.attach( { 'Styles + Reversed': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand All @@ -142,7 +141,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'd': editor } );
CKEditorInspector.attach( { 'Start index + Reversed': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand All @@ -160,7 +159,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'e': editor } );
CKEditorInspector.attach( { 'Start index': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand All @@ -178,7 +177,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'f': editor } );
CKEditorInspector.attach( { 'Reversed': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand All @@ -198,7 +197,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'g': editor } );
CKEditorInspector.attach( { 'Just styles': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand All @@ -218,7 +217,7 @@ ClassicEditor
}
} )
.then( editor => {
CKEditorInspector.attach( { 'h': editor } );
CKEditorInspector.attach( { 'No properties enabled': editor } );
} )
.catch( err => {
console.error( err.stack );
Expand Down

0 comments on commit 49e175d

Please sign in to comment.