build: enable JS semicolons (#22783)
This commit is contained in:
parent
24e21467b9
commit
5d657dece4
354 changed files with 21512 additions and 21510 deletions
|
@ -1,41 +1,41 @@
|
|||
import { expect } from 'chai'
|
||||
import { globalShortcut } from 'electron'
|
||||
import { ifdescribe } from './spec-helpers'
|
||||
import { expect } from 'chai';
|
||||
import { globalShortcut } from 'electron';
|
||||
import { ifdescribe } from './spec-helpers';
|
||||
|
||||
ifdescribe(process.platform !== 'win32')('globalShortcut module', () => {
|
||||
beforeEach(() => {
|
||||
globalShortcut.unregisterAll()
|
||||
})
|
||||
globalShortcut.unregisterAll();
|
||||
});
|
||||
|
||||
it('can register and unregister single accelerators', () => {
|
||||
const accelerator = 'CmdOrCtrl+A+B+C'
|
||||
const accelerator = 'CmdOrCtrl+A+B+C';
|
||||
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.false('initially registered')
|
||||
globalShortcut.register(accelerator, () => {})
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.true('registration worked')
|
||||
globalShortcut.unregister(accelerator)
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.false('unregistration worked')
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.false('initially registered');
|
||||
globalShortcut.register(accelerator, () => {});
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.true('registration worked');
|
||||
globalShortcut.unregister(accelerator);
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.false('unregistration worked');
|
||||
|
||||
globalShortcut.register(accelerator, () => {})
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.true('reregistration worked')
|
||||
globalShortcut.unregisterAll()
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.false('re-unregistration worked')
|
||||
})
|
||||
globalShortcut.register(accelerator, () => {});
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.true('reregistration worked');
|
||||
globalShortcut.unregisterAll();
|
||||
expect(globalShortcut.isRegistered(accelerator)).to.be.false('re-unregistration worked');
|
||||
});
|
||||
|
||||
it('can register and unregister multiple accelerators', () => {
|
||||
const accelerators = ['CmdOrCtrl+X', 'CmdOrCtrl+Y']
|
||||
const accelerators = ['CmdOrCtrl+X', 'CmdOrCtrl+Y'];
|
||||
|
||||
expect(globalShortcut.isRegistered(accelerators[0])).to.be.false('first initially unregistered')
|
||||
expect(globalShortcut.isRegistered(accelerators[1])).to.be.false('second initially unregistered')
|
||||
expect(globalShortcut.isRegistered(accelerators[0])).to.be.false('first initially unregistered');
|
||||
expect(globalShortcut.isRegistered(accelerators[1])).to.be.false('second initially unregistered');
|
||||
|
||||
globalShortcut.registerAll(accelerators, () => {})
|
||||
globalShortcut.registerAll(accelerators, () => {});
|
||||
|
||||
expect(globalShortcut.isRegistered(accelerators[0])).to.be.true('first registration worked')
|
||||
expect(globalShortcut.isRegistered(accelerators[1])).to.be.true('second registration worked')
|
||||
expect(globalShortcut.isRegistered(accelerators[0])).to.be.true('first registration worked');
|
||||
expect(globalShortcut.isRegistered(accelerators[1])).to.be.true('second registration worked');
|
||||
|
||||
globalShortcut.unregisterAll()
|
||||
globalShortcut.unregisterAll();
|
||||
|
||||
expect(globalShortcut.isRegistered(accelerators[0])).to.be.false('first unregistered')
|
||||
expect(globalShortcut.isRegistered(accelerators[1])).to.be.false('second unregistered')
|
||||
})
|
||||
})
|
||||
expect(globalShortcut.isRegistered(accelerators[0])).to.be.false('first unregistered');
|
||||
expect(globalShortcut.isRegistered(accelerators[1])).to.be.false('second unregistered');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue