Browse Source

Merge pull request #1264 from ckeditor/t/ckeditor5/645

Tests: Minor adjustments in toolbar configurations (see ckeditor/ckeditor5#645).
Piotrek Koszuliński 8 năm trước cách đây
mục cha
commit
8448ea94f8

+ 1 - 1
packages/ckeditor5-engine/tests/manual/highlight.js

@@ -60,7 +60,7 @@ class FancyWidget extends Plugin {
 
 ClassicEditor.create( global.document.querySelector( '#editor' ), {
 	plugins: [ Enter, Typing, Paragraph, Undo, Heading, Bold, Italic, List, FancyWidget ],
-	toolbar: [ 'headings', 'undo', 'redo', 'bold', 'italic', 'numberedList', 'bulletedList' ]
+	toolbar: [ 'headings', '|', 'undo', 'redo', 'bold', 'italic', 'numberedList', 'bulletedList' ]
 } )
 	.then( editor => {
 		window.editor = editor;

+ 1 - 1
packages/ckeditor5-engine/tests/manual/markers.js

@@ -26,7 +26,7 @@ let _uid = 1;
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [ Enter, Typing, Paragraph, Bold, Italic, List, Heading, Undo ],
-		toolbar: [ 'headings', 'bold', 'italic', 'bulletedList', 'numberedList', 'undo', 'redo' ]
+		toolbar: [ 'headings', '|', 'bold', 'italic', 'bulletedList', 'numberedList', 'undo', 'redo' ]
 	} )
 	.then( editor => {
 		window.editor = editor;

+ 1 - 1
packages/ckeditor5-engine/tests/manual/placeholder.js

@@ -17,7 +17,7 @@ import { attachPlaceholder } from '../../src/view/placeholder';
 ClassicEditor
 	.create( global.document.querySelector( '#editor' ), {
 		plugins: [ Enter, Typing, Paragraph, Undo, Heading ],
-		toolbar: [ 'headings', 'undo', 'redo' ]
+		toolbar: [ 'headings', '|', 'undo', 'redo' ]
 	} )
 	.then( editor => {
 		const viewDoc = editor.editing.view;

+ 1 - 1
packages/ckeditor5-engine/tests/manual/tickets/603/1.js

@@ -16,7 +16,7 @@ import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [ Enter, Typing, Paragraph, Heading, Bold, Italic ],
-		toolbar: [ 'headings', 'bold', 'italic' ]
+		toolbar: [ 'headings', '|', 'bold', 'italic' ]
 	} )
 	.then( editor => {
 		window.editor = editor;