ソースを参照

Code style: Aligned code style to new ESLint version.

Kamil Piechaczek 8 年 前
コミット
9393345a90
1 ファイル変更8 行追加7 行削除
  1. 8 7
      packages/ckeditor5-enter/tests/enter.js

+ 8 - 7
packages/ckeditor5-enter/tests/enter.js

@@ -12,13 +12,14 @@ describe( 'Enter feature', () => {
 	let editor, editingView;
 
 	beforeEach( () => {
-		return VirtualTestEditor.create( {
-			plugins: [ Enter ]
-		} )
-		.then( newEditor => {
-			editor = newEditor;
-			editingView = editor.editing.view;
-		} );
+		return VirtualTestEditor
+			.create( {
+				plugins: [ Enter ]
+			} )
+			.then( newEditor => {
+				editor = newEditor;
+				editingView = editor.editing.view;
+			} );
 	} );
 
 	it( 'creates the commands', () => {