Sfoglia il codice sorgente

Tests: Added PFW plugin to manual test.

Krzysztof Krztoń 7 anni fa
parent
commit
a965974fdc

+ 3 - 1
packages/ckeditor5-paste-from-office/tests/manual/integration.js

@@ -14,13 +14,15 @@ import Table from '@ckeditor/ckeditor5-table/src/table';
 
 import { stringify as stringifyView } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
 
+import PasteFromWord from '../../src/pastefromword';
+
 const htmlDiv = document.querySelector( '#html' );
 const textDiv = document.querySelector( '#text' );
 const dataDiv = document.querySelector( '#data' );
 
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
-		plugins: [ ArticlePluginSet, Strikethrough, Underline, Table ],
+		plugins: [ ArticlePluginSet, Strikethrough, Underline, Table, PasteFromWord ],
 		toolbar: [ 'heading', '|', 'bold', 'italic', 'strikethrough', 'underline', 'link',
 			'bulletedList', 'numberedList', 'blockQuote', 'table', 'undo', 'redo' ]
 	} )