Przeglądaj źródła

Remove redundant plugins from block content manual test.

Maciej Gołaszewski 7 lat temu
rodzic
commit
112b7728d7

+ 1 - 0
packages/ckeditor5-table/tests/manual/tableblockcontent.html

@@ -67,6 +67,7 @@
 		<tr>
 			<td>image</td>
 			<td>
+				<p>A paragraph with default alignment</p>
 				<img alt="sample image" src="sample.jpg">
 			</td>
 			<td></td>

+ 1 - 3
packages/ckeditor5-table/tests/manual/tableblockcontent.js

@@ -7,13 +7,11 @@
 
 import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
 import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
-import Table from '../../src/table';
-import TableToolbar from '../../src/tabletoolbar';
 import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment';
 
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
-		plugins: [ ArticlePluginSet, Table, TableToolbar, Alignment ],
+		plugins: [ ArticlePluginSet, Alignment ],
 		toolbar: [
 			'heading', '|', 'insertTable', '|', 'bold', 'italic', 'bulletedList', 'numberedList', 'blockQuote',
 			'alignment', '|', 'undo', 'redo'