fix shortcut spec error

This commit is contained in:
Shelley Vohr 2017-10-26 21:41:06 -04:00
parent 0317189213
commit abecde0572
No known key found for this signature in database
GPG key ID: F13993A75599653C

View file

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