diff --git a/src/background.js b/src/background.js index ddcef89..eebeb93 100644 --- a/src/background.js +++ b/src/background.js @@ -47,6 +47,7 @@ function createWindow () { // Load the url of the dev server if in development mode win.loadURL(process.env.WEBPACK_DEV_SERVER_URL) if (!process.env.IS_TEST) win.webContents.openDevTools() + if (process.env.IS_TEST) win.show() } else { createProtocol('app') // Load the index.html when not in development diff --git a/src/store/index.js b/src/store/index.js index eae7a04..ad535c2 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -30,12 +30,10 @@ export default new Vuex.Store({ state.settingsThemeDark = !state.settingsThemeDark }, setThemeAccent (state, { dark, light }) { - console.log(`Set accent. This is ${dark} and this is ${light}.`) state.settingsThemeAccentColorDark = dark state.settingsThemeAccentColorLight = light }, setThemePrimary (state, { dark, light }) { - console.log(`Set primary. This is ${dark} and this is ${light}.`) state.settingsThemePrimaryColorDark = dark state.settingsThemePrimaryColorLight = light }