remove screen.getMenuBarHeight spec

This commit is contained in:
Shelley Vohr 2018-03-05 20:10:34 -05:00
parent 199cf31b9e
commit 3635872f37
No known key found for this signature in database
GPG key ID: F13993A75599653C

View file

@ -18,17 +18,4 @@ describe('screen module', () => {
assert(display.size.height > 0)
})
})
describe('screen.getMenuBarHeight()', () => {
before(function () {
if (process.platform !== 'darwin') {
this.skip()
}
})
it('returns an integer', () => {
const screenHeight = screen.getMenuBarHeight()
assert.equal(typeof screenHeight, 'number')
})
})
})