Skip to content

Commit

Permalink
Fix ci fullscreen flag
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasnordquist committed Apr 30, 2019
1 parent 14f2f9f commit 03e228e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/electron.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async function createWindow() {

mainWindow.once('ready-to-show', () => {
if (mainWindow) {
runningUiTestOnCi && mainWindow.setFullScreen(true)
runningUiTestOnCi() && mainWindow.setFullScreen(true)
mainWindow.show()
}
})
Expand Down

0 comments on commit 03e228e

Please sign in to comment.