mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 13:10:09 +02:00
remove node_modules
This commit is contained in:
96
app/node_modules/electron-is-accelerator/test.js
generated
vendored
96
app/node_modules/electron-is-accelerator/test.js
generated
vendored
@@ -1,96 +0,0 @@
|
||||
import test from 'ava';
|
||||
import isAccelerator from '.';
|
||||
|
||||
const keys = [
|
||||
'0',
|
||||
'1',
|
||||
'9',
|
||||
'A',
|
||||
'G',
|
||||
'Z',
|
||||
'F1',
|
||||
'F5',
|
||||
'F24',
|
||||
'~',
|
||||
'!',
|
||||
'@',
|
||||
'#',
|
||||
'Plus',
|
||||
'Space',
|
||||
'Tab',
|
||||
'Backspace',
|
||||
'Delete',
|
||||
'Insert',
|
||||
'Return',
|
||||
'Enter',
|
||||
'Up',
|
||||
'Down',
|
||||
'Left',
|
||||
'Right',
|
||||
'Home',
|
||||
'End',
|
||||
'PageUp',
|
||||
'PageDown',
|
||||
'Escape',
|
||||
'Esc',
|
||||
'VolumeUp',
|
||||
'VolumeDown',
|
||||
'VolumeMute',
|
||||
'MediaNextTrack',
|
||||
'MediaPreviousTrack',
|
||||
'MediaStop',
|
||||
'MediaPlayPause',
|
||||
'PrintScreen'
|
||||
];
|
||||
|
||||
const modifiers = [
|
||||
'Command',
|
||||
'Cmd',
|
||||
'Control',
|
||||
'Ctrl',
|
||||
'CommandOrControl',
|
||||
'CmdOrCtrl',
|
||||
'Alt',
|
||||
'Option',
|
||||
'AltGr',
|
||||
'Shift',
|
||||
'Super'
|
||||
];
|
||||
|
||||
test('multiple modifier', t => t.true(isAccelerator('CommandOrControl+Shift+Z')));
|
||||
test('multiple keys', t => t.false(isAccelerator('A+Z')));
|
||||
test('typos', t => t.false(isAccelerator('CommandOrContol+A')));
|
||||
test('modifiers without keys', t => t.false(isAccelerator('CmdOrCtrl')));
|
||||
test('multiple modifiers without keys', t => t.false(isAccelerator('CmdOrCtrl+Ctrl')));
|
||||
test('empty string', t => t.false(isAccelerator('')));
|
||||
|
||||
// tests to check each modifiers
|
||||
modifiers.forEach(mod => test(
|
||||
mod + ' modifier',
|
||||
t => t.true(
|
||||
isAccelerator(mod + '+A')
|
||||
)
|
||||
));
|
||||
|
||||
// tests to check all keys
|
||||
keys.forEach(key => test(
|
||||
key + ' key',
|
||||
t => t.true(
|
||||
isAccelerator(key)
|
||||
)
|
||||
));
|
||||
|
||||
// tests to check every combination of modifier and key
|
||||
const testSequence = (sequence) => test(
|
||||
`${sequence} sequence`,
|
||||
t => t.true(
|
||||
isAccelerator(`${sequence}`)
|
||||
)
|
||||
);
|
||||
|
||||
modifiers.forEach(mod =>
|
||||
keys.forEach(key => {
|
||||
testSequence(`${mod}+${key}`);
|
||||
testSequence(`${key}+${mod}`);
|
||||
})
|
||||
);
|
Reference in New Issue
Block a user