process.env.NODE_ENV -> environment
FREEBIE
This commit is contained in:
parent
f43a5986da
commit
f31125eccc
1 changed files with 3 additions and 3 deletions
6
main.js
6
main.js
|
@ -140,7 +140,7 @@ function createWindow () {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (process.env.NODE_ENV === 'test') {
|
if (environment === 'test') {
|
||||||
mainWindow.loadURL(prepareURL([__dirname, 'test', 'index.html']));
|
mainWindow.loadURL(prepareURL([__dirname, 'test', 'index.html']));
|
||||||
} else {
|
} else {
|
||||||
mainWindow.loadURL(prepareURL([__dirname, 'background.html']));
|
mainWindow.loadURL(prepareURL([__dirname, 'background.html']));
|
||||||
|
@ -165,7 +165,7 @@ function createWindow () {
|
||||||
|
|
||||||
// Emitted when the window is about to be closed.
|
// Emitted when the window is about to be closed.
|
||||||
mainWindow.on('close', function (e) {
|
mainWindow.on('close', function (e) {
|
||||||
if (process.platform === 'darwin' && !shouldQuit && process.env.NODE_ENV !== 'test') {
|
if (process.platform === 'darwin' && !shouldQuit && environment !== 'test') {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
mainWindow.hide();
|
mainWindow.hide();
|
||||||
}
|
}
|
||||||
|
@ -216,7 +216,7 @@ app.on('before-quit', function() {
|
||||||
app.on('window-all-closed', function () {
|
app.on('window-all-closed', function () {
|
||||||
// On OS X it is common for applications and their menu bar
|
// On OS X it is common for applications and their menu bar
|
||||||
// to stay active until the user quits explicitly with Cmd + Q
|
// to stay active until the user quits explicitly with Cmd + Q
|
||||||
if (process.platform !== 'darwin' || process.env.NODE_ENV === 'test') {
|
if (process.platform !== 'darwin' || environment === 'test') {
|
||||||
app.quit()
|
app.quit()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue