Fix a few failing tests on Windows

This commit is contained in:
Cheng Zhao 2016-04-30 18:21:18 +09:00
Родитель 2a55d93501
Коммит 214eb0430c
2 изменённых файлов: 10 добавлений и 2 удалений

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

@ -173,11 +173,12 @@ describe('browser-window module', function () {
})
it('does not crash in did-fail-provisional-load handler', function (done) {
this.timeout(10000)
w.webContents.once('did-fail-provisional-load', function () {
w.loadURL('http://localhost:11111')
w.loadURL('http://127.0.0.1:11111')
done()
})
w.loadURL('http://localhost:11111')
w.loadURL('http://127.0.0.1:11111')
})
})

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

@ -97,6 +97,9 @@ describe('chromium feature', function () {
if (isCI && process.platform === 'linux') {
return
}
if (isCI && process.platform === 'win32') {
return
}
it('can return labels of enumerated devices', function (done) {
navigator.mediaDevices.enumerateDevices().then((devices) => {
@ -327,6 +330,10 @@ describe('chromium feature', function () {
})
describe('webgl', function () {
if (isCI && process.platform === 'win32') {
return
}
it('can be get as context in canvas', function () {
if (process.platform === 'linux') return