Don't assert GPU process on Linux

This commit is contained in:
Kevin Sawicki 2017-05-26 09:14:17 -07:00
parent 1e4dd9b163
commit 8b14df143a

View file

@ -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'))
})