8
0
فهرست منبع

Internal: Moved tests to a proper section.

Oskar Wróbel 8 سال پیش
والد
کامیت
def2c42dba
1فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  1. 6 6
      packages/ckeditor5-editor-inline/tests/inlineeditorui.js

+ 6 - 6
packages/ckeditor5-editor-inline/tests/inlineeditorui.js

@@ -61,6 +61,12 @@ describe( 'InlineEditorUI', () => {
 		it( 'creates root editable element', () => {
 		it( 'creates root editable element', () => {
 			expect( editor.editing.view.getRoot() ).to.be.instanceOf( RootEditableElement );
 			expect( editor.editing.view.getRoot() ).to.be.instanceOf( RootEditableElement );
 		} );
 		} );
+	} );
+
+	describe( 'init()', () => {
+		it( 'renders the #view', () => {
+			expect( view.isRendered ).to.be.true;
+		} );
 
 
 		describe( 'panel', () => {
 		describe( 'panel', () => {
 			it( 'binds view.panel#isVisible to editor.ui#focusTracker', () => {
 			it( 'binds view.panel#isVisible to editor.ui#focusTracker', () => {
@@ -152,12 +158,6 @@ describe( 'InlineEditorUI', () => {
 				);
 				);
 			} );
 			} );
 		} );
 		} );
-	} );
-
-	describe( 'init()', () => {
-		it( 'renders the #view', () => {
-			expect( view.isRendered ).to.be.true;
-		} );
 
 
 		describe( 'view.toolbar#items', () => {
 		describe( 'view.toolbar#items', () => {
 			it( 'are filled with the config.toolbar (specified as an Array)', () => {
 			it( 'are filled with the config.toolbar (specified as an Array)', () => {