Skip to content

Commit

Permalink
Disable globalShortcut spec on Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Aug 10, 2016
1 parent 912c771 commit b017d2d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions spec/api-global-shortcut-spec.js
@@ -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()
})
Expand Down

0 comments on commit b017d2d

Please sign in to comment.