瀏覽代碼

Fix dangling comma.

Maciej Gołaszewski 5 年之前
父節點
當前提交
010e35151b
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-editor-inline/tests/inlineeditorui.js

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

@@ -26,7 +26,7 @@ describe( 'InlineEditorUI', () => {
 	beforeEach( () => {
 		return VirtualInlineTestEditor
 			.create( 'foo', {
-				toolbar: [ 'foo', 'bar' ],
+				toolbar: [ 'foo', 'bar' ]
 			} )
 			.then( newEditor => {
 				editor = newEditor;
@@ -137,7 +137,7 @@ describe( 'InlineEditorUI', () => {
 				return VirtualInlineTestEditor
 					.create( 'foo', {
 						extraPlugins: [ Paragraph ],
-						placeholder: 'placeholder-text',
+						placeholder: 'placeholder-text'
 					} )
 					.then( newEditor => {
 						const firstChild = newEditor.editing.view.document.getRoot().getChild( 0 );