electron/spec/api-process-spec.js

27 lines
1,002 B
JavaScript
Raw Normal View History

const assert = require('assert')
describe('process module', function () {
describe('process.getCPUUsage()', function () {
it('returns a cpu usage object', function () {
2017-05-04 21:15:27 +00:00
const cpuUsage = process.getCPUUsage()
assert.equal(typeof cpuUsage.percentCPUUsage, 'number')
assert.equal(typeof cpuUsage.idleWakeupsPerSecond, 'number')
})
})
describe('process.getIOCounters()', function () {
it('returns an io counters object', function () {
2017-05-04 21:50:06 +00:00
if (process.platform === 'darwin') {
2017-05-04 19:27:47 +00:00
return
}
2017-05-04 21:15:27 +00:00
const ioCounters = process.getIOCounters()
2017-05-04 18:10:57 +00:00
assert.equal(typeof ioCounters.readOperationCount, 'number')
assert.equal(typeof ioCounters.writeOperationCount, 'number')
assert.equal(typeof ioCounters.otherOperationCount, 'number')
assert.equal(typeof ioCounters.readTransferCount, 'number')
assert.equal(typeof ioCounters.writeTransferCount, 'number')
assert.equal(typeof ioCounters.otherTransferCount, 'number')
})
})
})