mirror of
https://github.com/electron/electron.git
synced 2026-01-29 01:08:18 -05:00
spec: move powerSaveBlocker spec to main process (#19236)
This commit is contained in:
committed by
Cheng Zhao
parent
a4cffd29b7
commit
f101c72cbe
@@ -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()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user