Skip to content

Commit

Permalink
add to merge
Browse files Browse the repository at this point in the history
  • Loading branch information
vinguyen12 committed Jun 7, 2024
1 parent 54cc612 commit 1faabbc
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1faabbc

Please sign in to comment.