Kaynağa Gözat

Enlarged the tests coverage for plugins that don't have any dependency defined.

fredck 10 yıl önce
ebeveyn
işleme
53290538d0

+ 2 - 2
packages/ckeditor5-engine/tests/plugincollection/plugincollection.js

@@ -23,11 +23,11 @@ before( function() {
 
 // Create fake plugins that will be used on tests.
 
-CKEDITOR.define( 'plugin!A', [ 'plugin' ], function() {
+CKEDITOR.define( 'plugin!A', function() {
 	return PluginA;
 } );
 
-CKEDITOR.define( 'plugin!B', [ 'plugin' ], function() {
+CKEDITOR.define( 'plugin!B', function() {
 	return PluginB;
 } );