Disable globalShortcut spec on Windows CI

This commit is contained in:
Kevin Sawicki 2016-08-10 08:51:29 -07:00
Родитель 912c7716b3
Коммит b017d2d324
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1,7 +1,13 @@
const {globalShortcut} = require('electron').remote
const assert = require('assert')
const isCI = require('electron').remote.getGlobal('isCi')
describe('globalShortcut module', () => {
if (isCI && process.platform === 'win32') {
return
}
beforeEach(() => {
globalShortcut.unregisterAll()
})