From 9cb320c924189b0e128322bf08db0a27c4aab169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Go=C5=82aszewski?= Date: Fri, 21 Feb 2020 13:07:32 +0100 Subject: [PATCH] Fix dangling comma. --- tests/ballooneditorui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ballooneditorui.js b/tests/ballooneditorui.js index e388a74..f075d02 100644 --- a/tests/ballooneditorui.js +++ b/tests/ballooneditorui.js @@ -120,7 +120,7 @@ describe( 'BalloonEditorUI', () => { return VirtualBalloonTestEditor .create( 'foo', { extraPlugins: [ BalloonToolbar, Paragraph ], - placeholder: 'placeholder-text', + placeholder: 'placeholder-text' } ) .then( newEditor => { const firstChild = newEditor.editing.view.document.getRoot().getChild( 0 ); @@ -159,7 +159,7 @@ describe( 'BalloonEditorUI', () => { .create( element, { plugins: [ BalloonToolbar ], extraPlugins: [ Paragraph ], - placeholder: 'config takes precedence', + placeholder: 'config takes precedence' } ) .then( newEditor => { const firstChild = newEditor.editing.view.document.getRoot().getChild( 0 );