ソースを参照

Internal: Article preset was moved to the core. See ckeditor/ckeditor5-core#104.

Piotrek Koszuliński 8 年 前
コミット
ff12f26d6e
1 ファイル変更2 行追加2 行削除
  1. 2 2
      packages/ckeditor5-block-quote/tests/manual/blockquote.js

+ 2 - 2
packages/ckeditor5-block-quote/tests/manual/blockquote.js

@@ -6,14 +6,14 @@
 /* global document, console, window */
 
 import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
-import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
+import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
 
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [
-			ArticlePreset
+			ArticlePluginSet
 		],
 		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
 	} )