This commit is contained in:
Samuel Attard 2016-11-22 16:13:08 +11:00
Родитель 926cabec78
Коммит 97b4f12112
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 273DC1869D8F13EF
1 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -1765,12 +1765,12 @@ describe('browser-window module', function () {
})
it('should not affect the bounds when restoring the window', function (done) {
w.minimize();
w.minimize()
setTimeout(() => {
w.restore();
assert.equal(w.getSize()[0], 800);
done();
}, 200);
w.restore()
assert.equal(w.getSize()[0], 800)
done()
}, 200)
})
})
@ -1781,13 +1781,13 @@ describe('browser-window module', function () {
})
it('should not affect the bounds when restoring the window', function (done) {
const originalPos = w.getPosition();
w.maximize();
const originalPos = w.getPosition()
w.maximize()
setTimeout(() => {
w.unmaximize();
assertBoundsEqual(originalPos, w.getPosition());
done();
}, 200);
w.unmaximize()
assertBoundsEqual(originalPos, w.getPosition())
done()
}, 200)
})
})
})