Electron-417 (Reposition active notifications whenever the config is updated) (#339)

- Reposition active notifications when the config is updated
- Fix spectron test cases
This commit is contained in:
Kiran Niranjan
2018-04-25 16:31:43 +05:30
committed by Vishwas Shashidhar
parent 1ea6c2af3c
commit a24255bf69
2 changed files with 8 additions and 28 deletions

View File

@@ -144,7 +144,7 @@ describe('Tests for Notification position', () => {
it('should change notification position to upper-right', (done) => {
return app.client
.click('#open-config-win')
.windowByIndex(2)
.windowByIndex(3)
.click('#upper-right')
.click('#ok-button')
.windowByIndex(0)
@@ -194,7 +194,7 @@ describe('Tests for Notification position', () => {
.windowByIndex(0)
.click('#notf')
.getWindowCount().then((count) => {
expect(count === 3).toBeTruthy();
expect(count === 4).toBeTruthy();
done();
}).catch((err) => {
done.fail(new Error(`notificationPosition failed in getWindowCount with error: ${err}`));