2019-07-15 08:38:01 +00:00
|
|
|
import { expect } from 'chai';
|
2020-04-07 00:04:09 +00:00
|
|
|
import { powerSaveBlocker } from 'electron/main';
|
2019-07-15 08:38:01 +00:00
|
|
|
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
});
|