mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed the issues for all the javascript files reported by the liner.
This commit is contained in:
@@ -10,18 +10,18 @@
|
||||
import keyboardShortcuts from 'sources/keyboard_shortcuts';
|
||||
|
||||
describe('the keyboard shortcuts', () => {
|
||||
const F1_KEY = 112,
|
||||
EDIT_KEY = 71, // Key: G -> Grid values
|
||||
LEFT_ARROW_KEY = 37,
|
||||
RIGHT_ARROW_KEY = 39,
|
||||
MOVE_NEXT = 'right';
|
||||
const F1_KEY = 112;
|
||||
// const EDIT_KEY = 71; // Key: G -> Grid values
|
||||
// const LEFT_ARROW_KEY = 37;
|
||||
// const RIGHT_ARROW_KEY = 39;
|
||||
// const MOVE_NEXT = 'right';
|
||||
|
||||
let debuggerElementSpy, event, debuggerUserShortcutSpy;
|
||||
debuggerUserShortcutSpy = jasmine.createSpyObj(
|
||||
'userDefinedShortcuts', [
|
||||
{ 'edit_grid_keys': null },
|
||||
{ 'next_panel_keys': null },
|
||||
{ 'previous_panel_keys': null }
|
||||
{ 'previous_panel_keys': null },
|
||||
]
|
||||
);
|
||||
beforeEach(() => {
|
||||
|
||||
Reference in New Issue
Block a user