Browse Source

Import modules instead of relying on hot load.

Piotrek Koszuliński 9 years ago
parent
commit
3d5afc486d
1 changed files with 6 additions and 1 deletions
  1. 6 1
      packages/ckeditor5-heading/tests/manual/heading.js

+ 6 - 1
packages/ckeditor5-heading/tests/manual/heading.js

@@ -6,9 +6,14 @@
 /* globals console, document, window */
 
 import ClassicEditor from '/ckeditor5/editor-classic/classic.js';
+import Enter from '/ckeditor5/enter/enter.js';
+import Typing from '/ckeditor5/typing/typing.js';
+import Heading from '/ckeditor5/heading/heading.js';
+import Paragraph from '/ckeditor5/paragraph/paragraph.js';
+import Undo from '/ckeditor5/undo/undo.js';
 
 ClassicEditor.create( document.querySelector( '#editor' ), {
-	features: [ 'enter', 'typing', 'undo', 'heading' ],
+	features: [ Enter, Typing, Undo, Heading, Paragraph ],
 	toolbar: [ 'headings', 'undo', 'redo' ]
 } )
 .then( editor => {