Assert memory info for all returned processes
This commit is contained in:
parent
ab1bcefe9e
commit
3b3e7cc14e
1 changed files with 6 additions and 4 deletions
|
@ -538,10 +538,12 @@ describe('app module', function () {
|
|||
it('returns the process memory of all running electron processes', function () {
|
||||
const appMemoryInfo = app.getAppMemoryInfo()
|
||||
assert.ok(appMemoryInfo.length > 0, 'App memory info object is not > 0')
|
||||
assert.ok(appMemoryInfo[0].memory.workingSetSize > 0, 'working set size is not > 0')
|
||||
assert.ok(appMemoryInfo[0].memory.privateBytes > 0, 'private bytes is not > 0')
|
||||
assert.ok(appMemoryInfo[0].memory.sharedBytes > 0, 'shared bytes is not > 0')
|
||||
assert.ok(appMemoryInfo[0].pid > 0, 'pid is not > 0')
|
||||
for (const {memory, pid} of appMemoryInfo) {
|
||||
assert.ok(memory.workingSetSize > 0, 'working set size is not > 0')
|
||||
assert.ok(memory.privateBytes > 0, 'private bytes is not > 0')
|
||||
assert.ok(memory.sharedBytes > 0, 'shared bytes is not > 0')
|
||||
assert.ok(pid > 0, 'pid is not > 0')
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue