Przeglądaj źródła

Use TableEditing in SplitCellCommand tests.

Maciej Gołaszewski 5 lat temu
rodzic
commit
21bee8af91

+ 7 - 8
packages/ckeditor5-table/tests/commands/splitcellcommand.js

@@ -4,13 +4,15 @@
  */
 
 import ModelTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/modeltesteditor';
+import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 import { getData, setData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
+import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
 
-import SplitCellCommand from '../../src/commands/splitcellcommand';
-import { defaultConversion, defaultSchema, modelTable } from '../_utils/utils';
+import TableEditing from '../../src/tableediting';
 import TableSelection from '../../src/tableselection';
-import TableUtils from '../../src/tableutils';
-import { assertEqualMarkup } from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
+import { modelTable } from '../_utils/utils';
+
+import SplitCellCommand from '../../src/commands/splitcellcommand';
 
 describe( 'SplitCellCommand', () => {
 	let editor, model, command;
@@ -18,15 +20,12 @@ describe( 'SplitCellCommand', () => {
 	beforeEach( () => {
 		return ModelTestEditor
 			.create( {
-				plugins: [ TableUtils, TableSelection ]
+				plugins: [ Paragraph, TableEditing, TableSelection ]
 			} )
 			.then( newEditor => {
 				editor = newEditor;
 				model = editor.model;
 				command = new SplitCellCommand( editor );
-
-				defaultSchema( model.schema );
-				defaultConversion( editor.conversion );
 			} );
 	} );