Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #43 from ckeditor/t/ckeditor5/645
Browse files Browse the repository at this point in the history
Tests: Minor adjustments in toolbar configurations (see ckeditor/ckeditor5#645).
  • Loading branch information
Reinmar authored Feb 2, 2018
2 parents 5a8971f + 7b73610 commit 0372b62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/manual/copycut.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { stringify as stringifyView } from '@ckeditor/ckeditor5-engine/src/dev-u
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ ArticlePluginSet ],
toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/dropping.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import Selection from '@ckeditor/ckeditor5-engine/src/model/selection';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ ArticlePluginSet ],
toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/pasting.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { stringify as stringifyView } from '@ckeditor/ckeditor5-engine/src/dev-u
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ ArticlePluginSet ],
toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down

0 comments on commit 0372b62

Please sign in to comment.