This commit is contained in:
Hari Juturu 2017-07-11 18:29:59 -07:00
parent 9a3b78d9fe
commit 80bd6a3e91
3 changed files with 4 additions and 4 deletions

View file

@ -567,7 +567,7 @@ describe('app module', function () {
}) })
}) })
describe.only('mixed sandbox option', function () { describe('mixed sandbox option', function () {
// FIXME Get these specs running on Linux // FIXME Get these specs running on Linux
if (process.platform === 'linux') return if (process.platform === 'linux') return

View file

@ -42,8 +42,8 @@ app.once('ready', () => {
let connected = false let connected = false
function finish () { function finish () {
if (connected && argv.sandbox != null && argv.noSandbox != null if (connected && argv.sandbox != null && argv.noSandbox != null &&
&& argv.noSandboxDevtools != null && argv.sandboxDevtools != null) { argv.noSandboxDevtools != null && argv.sandboxDevtools != null) {
client.once('end', () => { client.once('end', () => {
app.exit(0) app.exit(0)
}) })