Removed option to minimize to tray, this is now the default behaviour

This commit is contained in:
Martin Gondermann
2016-07-03 14:58:48 +02:00
parent 0a289c5237
commit 2919b1af5f
5 changed files with 16 additions and 56 deletions

View File

@@ -151,16 +151,6 @@ describe('browser/settings.html', function() {
});
});
describe('Minimize to tray', function() {
it('should appear on win32 and darwin', function() {
const expected = (process.platform === 'win32' || process.platform === 'darwin');
env.addClientCommands(this.app.client);
return this.app.client
.loadSettingsPage()
.isExisting('#inputMinimizeToTray').should.eventually.equal(expected)
});
});
describe('Toggle window visibility when clicking on the tray icon', function() {
it('should appear on win32', function() {
const expected = (process.platform === 'win32');