Browse Source

Added basic styles to the manual test.

Kamil Piechaczek 5 years ago
parent
commit
178ec1011a
1 changed files with 7 additions and 0 deletions
  1. 7 0
      packages/ckeditor5-list/tests/manual/list-style.js

+ 7 - 0
packages/ckeditor5-list/tests/manual/list-style.js

@@ -19,11 +19,15 @@ import Indent from '@ckeditor/ckeditor5-indent/src/indent';
 import IndentBlock from '@ckeditor/ckeditor5-indent/src/indentblock';
 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';
 
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [
 			Essentials,
+			Bold,
+			Italic,
 			Code,
 			Heading,
 			List,
@@ -40,6 +44,9 @@ ClassicEditor
 		toolbar: [
 			'heading',
 			'|',
+			'bold',
+			'italic',
+			'|',
 			'removeFormat',
 			'|',
 			'bulletedList', 'numberedList', 'todoList',