Add feature to hide window into system tray in Linux

This commit is contained in:
Yuya Ochiai
2016-07-05 23:49:10 +09:00
parent d235eeb8b3
commit ad7f63127f
3 changed files with 17 additions and 17 deletions

View File

@@ -152,8 +152,8 @@ describe('browser/settings.html', function() {
});
describe('Minimize to tray', function() {
it('should appear on darwin', function() {
const expected = (process.platform === 'darwin');
it('should appear on darwin or linux', function() {
const expected = (process.platform === 'darwin' || process.platform === 'linux');
env.addClientCommands(this.app.client);
return this.app.client
.loadSettingsPage()