build: enable JS semicolons (#22783)

This commit is contained in:
Samuel Attard 2020-03-20 13:28:31 -07:00 committed by GitHub
parent 24e21467b9
commit 5d657dece4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
354 changed files with 21512 additions and 21510 deletions

View file

@ -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');
});
});