Don't assert GPU process on Linux
This commit is contained in:
parent
1e4dd9b163
commit
8b14df143a
1 changed files with 4 additions and 1 deletions
|
@ -550,7 +550,10 @@ describe('app module', function () {
|
|||
assert.equal(typeof cpu.idleWakeupsPerSecond, 'number')
|
||||
}
|
||||
|
||||
assert.ok(types.includes('GPU'))
|
||||
if (process.platform !== 'linux') {
|
||||
assert.ok(types.includes('GPU'))
|
||||
}
|
||||
|
||||
assert.ok(types.includes('Browser'))
|
||||
assert.ok(types.includes('Tab'))
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue