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 c054d11
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions spec/api-global-shortcut-spec.js
@@ -1,7 +1,14 @@
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 c054d11

Please sign in to comment.