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

@ -1,17 +0,0 @@
const { powerSaveBlocker } = require('electron').remote
const chai = require('chai')
const dirtyChai = require('dirty-chai')
const { expect } = chai
chai.use(dirtyChai)
describe('powerSaveBlocker module', () => {
it('can be started and stopped', () => {
expect(powerSaveBlocker.isStarted(-1)).to.be.false()
const id = powerSaveBlocker.start('prevent-app-suspension')
expect(id).to.to.be.a('number')
expect(powerSaveBlocker.isStarted(id)).to.be.true()
powerSaveBlocker.stop(id)
expect(powerSaveBlocker.isStarted(id)).to.be.false()
})
})