UI Improvements for settings page

This commit is contained in:
Asaad Mahmood
2016-09-12 20:53:45 +05:00
parent 3be2c3facb
commit 71ab644aeb
2 changed files with 73 additions and 77 deletions

View File

@@ -171,13 +171,13 @@ describe('browser/settings.html', function() {
});
});
describe('Notifications', function() {
describe('Flash taskbar icon on new messages', function() {
it('should appear on win32 and linux', function() {
const expected = (process.platform === 'win32' || process.platform === 'linux');
env.addClientCommands(this.app.client);
return this.app.client
.loadSettingsPage()
.isExisting('#notificationsRow').should.eventually.equal(expected)
.isExisting('#inputflashWindow').should.eventually.equal(expected)
});
});
@@ -191,4 +191,4 @@ describe('browser/settings.html', function() {
});
});
});
});
});