implements #122, urgent hint on linux

This commit is contained in:
Jonas Schwabe
2016-07-12 22:14:32 +02:00
parent 04fe0fd336
commit 028d0ac7f8
3 changed files with 7 additions and 4 deletions

View File

@@ -172,8 +172,8 @@ describe('browser/settings.html', function() {
});
describe('Notifications', function() {
it('should appear on win32', function() {
const expected = (process.platform === 'win32');
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()