diff --git a/packages/roosterjs-content-model-plugins/test/edit/EditPluginTest.ts b/packages/roosterjs-content-model-plugins/test/edit/EditPluginTest.ts index 47b23bc3c7a..9296ddbc17a 100644 --- a/packages/roosterjs-content-model-plugins/test/edit/EditPluginTest.ts +++ b/packages/roosterjs-content-model-plugins/test/edit/EditPluginTest.ts @@ -106,21 +106,6 @@ describe('EditPlugin', () => { expect(keyboardTabSpy).not.toHaveBeenCalled(); }); - it('Shift+Delete', () => { - plugin = new EditPlugin(); - const rawEvent = { key: 'Delete', shiftKey: true } as any; - - plugin.initialize(editor); - - plugin.onPluginEvent({ - eventType: 'keyDown', - rawEvent, - }); - - expect(keyboardDeleteSpy).not.toHaveBeenCalled(); - expect(keyboardInputSpy).not.toHaveBeenCalled(); - }); - it('Tab', () => { plugin = new EditPlugin(); const rawEvent = { key: 'Tab' } as any;