Sort contents by id for consistent ordering

This commit is contained in:
Kevin Sawicki 2016-07-14 09:37:09 -07:00
Родитель 34f454a0f5
Коммит a4001fbc55
1 изменённых файлов: 8 добавлений и 5 удалений

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

@ -36,12 +36,15 @@ describe('webContents module', function () {
describe('getAllWebContents() API', function () {
it('returns an array of web contents', function (done) {
w.webContents.on('devtools-opened', function () {
assert.equal(webContents.getAllWebContents().length, 4)
const all = webContents.getAllWebContents().sort(function (a, b) {
return a.getId() - b.getId()
})
assert.equal(webContents.getAllWebContents()[0].getType(), 'remote')
assert.equal(webContents.getAllWebContents()[1].getType(), 'webview')
assert.equal(webContents.getAllWebContents()[2].getType(), 'window')
assert.equal(webContents.getAllWebContents()[3].getType(), 'window')
assert.equal(all.length, 4)
assert.equal(all[0].getType(), 'window')
assert.equal(all[1].getType(), 'window')
assert.equal(all[2].getType(), 'remote')
assert.equal(all[3].getType(), 'webview')
done()
})