Răsfoiți Sursa

Tests: Adjustments.

Krzysztof Krztoń 7 ani în urmă
părinte
comite
ff69fceb68

+ 1 - 2
packages/ckeditor5-editor-balloon/tests/ballooneditor.js

@@ -207,7 +207,6 @@ describe( 'BalloonEditor', () => {
 
 			class EventWatcher extends Plugin {
 				init() {
-					this.editor.plugins.on( 'ready', spy );
 					this.editor.ui.on( 'ready', spy );
 					this.editor.data.on( 'ready', spy );
 					this.editor.on( 'ready', spy );
@@ -220,7 +219,7 @@ describe( 'BalloonEditor', () => {
 				} )
 				.then( newEditor => {
 					expect( fired ).to.deep.equal(
-						[ 'ready-plugincollection', 'ready-ballooneditorui', 'ready-datacontroller', 'ready-ballooneditor' ] );
+						[ 'ready-ballooneditorui', 'ready-datacontroller', 'ready-ballooneditor' ] );
 
 					editor = newEditor;
 				} );