0d2e967960
* feat: expose electron/{process} typed modules * chore: update imports for common modules * chore: update typescript generator * chore: remap electron/* to the internal packages
13 lines
521 B
TypeScript
13 lines
521 B
TypeScript
import { expect } from 'chai';
|
|
import { powerSaveBlocker } from 'electron/main';
|
|
|
|
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');
|
|
});
|
|
});
|