spec: move powerSaveBlocker spec to main process (#19236)

This commit is contained in:
Jeremy Apthorp 2019-07-15 01:38:01 -07:00 committed by Cheng Zhao
parent a4cffd29b7
commit f101c72cbe
2 changed files with 13 additions and 17 deletions

View file

@ -0,0 +1,13 @@
import { expect } from 'chai'
import { powerSaveBlocker } from 'electron'
describe('powerSaveBlocker module', () => {
it('can be started and stopped', () => {
expect(powerSaveBlocker.isStarted(-1)).to.be.false('is started')
const id = powerSaveBlocker.start('prevent-app-suspension')
expect(id).to.to.be.a('number')
expect(powerSaveBlocker.isStarted(id)).to.be.true('is started')
powerSaveBlocker.stop(id)
expect(powerSaveBlocker.isStarted(id)).to.be.false('is started')
})
})