@@ -149,7 +149,7 @@ describe( 'Editor', () => {
bar: 'foo',
foo: {
c: 3
- },
+ }
} );
expect( editor.config.get( 'foo' ) ).to.deep.equal( {
@@ -14,7 +14,7 @@ document.getElementById( 'form' ).submit = () => {};
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ ArticlePluginSet ],
- toolbar: [ 'bold', 'italic', 'undo', 'redo' ],
+ toolbar: [ 'bold', 'italic', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
@@ -15,7 +15,7 @@ ClassicEditor
plugins: [ ArticlePluginSet, PendingActions ],
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
image: {
- toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ],
+ toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
}
plugins: [ ArticlePluginSet, BalloonToolbar ],
},
balloonToolbar: [ 'bold', 'italic', 'link' ]
@@ -12,7 +12,7 @@ let editor, pendingActions;
describe( 'PendingActions', () => {
beforeEach( () => {
return VirtualTestEditor.create( {
- plugins: [ PendingActions ],
+ plugins: [ PendingActions ]
} ).then( newEditor => {
editor = newEditor;
pendingActions = editor.plugins.get( PendingActions );