From fd8b8910a33d54a6350b75f4415605c0865bfd3c Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Tue, 16 May 2017 09:11:58 -0700 Subject: [PATCH] Eliminate HIDE_DEV_TOOLS environment variable. Hide in test env. FREEBIE --- Gruntfile.js | 3 +-- config/test.json | 2 +- main.js | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index c818e3425..cea3b6f64 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -355,8 +355,7 @@ module.exports = function(grunt) { path: path.join(__dirname, 'node_modules', '.bin', 'electron'), args: [path.join(__dirname, 'main.js')], env: { - NODE_ENV: environment, - HIDE_DEV_TOOLS: true + NODE_ENV: environment } }); diff --git a/config/test.json b/config/test.json index 6d19ca42e..d0e5c25d8 100644 --- a/config/test.json +++ b/config/test.json @@ -1,5 +1,5 @@ { "storageProfile": "test", "disableAutoUpdate": true, - "openDevTools": true + "openDevTools": false } diff --git a/main.js b/main.js index 33da3c62f..5309edcf4 100644 --- a/main.js +++ b/main.js @@ -146,7 +146,7 @@ function createWindow () { mainWindow.loadURL(prepareURL([__dirname, 'background.html'])); } - if (config.get('openDevTools') && !process.env.HIDE_DEV_TOOLS) { + if (config.get('openDevTools')) { // Open the DevTools. mainWindow.webContents.openDevTools() }