diff --git a/test/specs/browser/settings_test.js b/test/specs/browser/settings_test.js index c590cfbe..0bd050a8 100644 --- a/test/specs/browser/settings_test.js +++ b/test/specs/browser/settings_test.js @@ -161,6 +161,16 @@ describe('browser/settings.html', function() { }); }); + describe('Toggle window visibility when clicking on the tray icon', function() { + it('should appear win32', function() { + const expected = (process.platform === 'win32'); + env.addClientCommands(this.app.client); + return this.app.client + .loadSettingsPage() + .isExisting('#inputToggleWindowOnTrayIconClick').should.eventually.equal(expected) + }); + }); + describe('Notifications', function() { it('should appear on win32', function() { const expected = (process.platform === 'win32');