瀏覽代碼

Removed skipped test.

Maciej Bukowski 5 年之前
父節點
當前提交
d8a60127ab
共有 1 個文件被更改,包括 0 次插入21 次删除
  1. 0 21
      packages/ckeditor5-watchdog/tests/contextwatchdog.js

+ 0 - 21
packages/ckeditor5-watchdog/tests/contextwatchdog.js

@@ -59,27 +59,6 @@ describe( 'ContextWatchdog', () => {
 		expect( err.message ).to.match( /Cannot add items to destroyed watchdog\./ );
 	} );
 
-	it.skip( 'case: editor, contextItem', async () => {
-		watchdog = ContextWatchdog.for( Context, {} );
-
-		watchdog.add( {
-			editor1: {
-				type: 'editor',
-				creator: ( el, config ) => ClassicTestEditor.create( el, config ),
-				sourceElementOrData: element1,
-				config: {}
-			},
-			annotatedInput: {
-				type: 'contextItem',
-				creator: () => { }
-			}
-		} );
-
-		await watchdog.waitForReady();
-
-		await watchdog.destroy();
-	} );
-
 	describe( 'for scenario with no items', () => {
 		it( 'should create only context', async () => {
 			watchdog = ContextWatchdog.for( Context, {} );