Fix devtools open in mixed sandbox mode

This commit is contained in:
Hari Juturu 2017-07-11 18:18:36 -07:00
parent 30df0f3306
commit 9a3b78d9fe
4 changed files with 24 additions and 7 deletions

View file

@ -567,7 +567,7 @@ describe('app module', function () {
})
})
describe('mixed sandbox option', function () {
describe.only('mixed sandbox option', function () {
// FIXME Get these specs running on Linux
if (process.platform === 'linux') return
@ -641,6 +641,9 @@ describe('app module', function () {
assert.equal(argv.noSandbox.includes('--enable-sandbox'), false)
assert.equal(argv.noSandbox.includes('--no-sandbox'), true)
assert.equal(argv.noSandboxDevtools, true)
assert.equal(argv.sandboxDevtools, true)
done()
})
})