Add initial global shortcut spec
This commit is contained in:
Родитель
39e1541a7e
Коммит
a6353eb98f
|
@ -0,0 +1,24 @@
|
|||
const {globalShortcut} = require('electron').remote
|
||||
const assert = require('assert')
|
||||
|
||||
describe('globalShortcut module', () => {
|
||||
beforeEach(() => {
|
||||
globalShortcut.unregisterAll()
|
||||
})
|
||||
|
||||
it('can register and unregister accelerators', () => {
|
||||
const accelerator = 'CommandOrControl+A+B+C'
|
||||
|
||||
assert.equal(globalShortcut.isRegistered(accelerator), false)
|
||||
globalShortcut.register(accelerator, () => {})
|
||||
assert.equal(globalShortcut.isRegistered(accelerator), true)
|
||||
globalShortcut.unregister(accelerator)
|
||||
assert.equal(globalShortcut.isRegistered(accelerator), false)
|
||||
|
||||
assert.equal(globalShortcut.isRegistered(accelerator), false)
|
||||
globalShortcut.register(accelerator, () => {})
|
||||
assert.equal(globalShortcut.isRegistered(accelerator), true)
|
||||
globalShortcut.unregisterAll()
|
||||
assert.equal(globalShortcut.isRegistered(accelerator), false)
|
||||
})
|
||||
})
|
Загрузка…
Ссылка в новой задаче