8
0
Maciej Bukowski 6 лет назад
Родитель
Сommit
934fdb037e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-core/tests/_utils-tests/virtualtesteditor.js

+ 1 - 1
packages/ckeditor5-core/tests/_utils-tests/virtualtesteditor.js

@@ -58,7 +58,7 @@ describe( 'VirtualTestEditor', () => {
 		it( 'fires the `data#ready` event once', () => {
 			const dataReadySpy = sinon.spy();
 
-			const Plugin = editor => {
+			const Plugin = function( editor ) {
 				editor.data.on( 'ready', dataReadySpy );
 			};