spec: Increase timeout for window.open specs

This commit is contained in:
Cheng Zhao 2015-10-06 16:08:32 +08:00
Родитель 8e40947938
Коммит f6327de7f7
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -56,6 +56,8 @@ describe 'chromium feature', ->
assert.notEqual navigator.language, ''
describe 'window.open', ->
@timeout 10000
it 'returns a BrowserWindowProxy object', ->
b = window.open 'about:blank', '', 'show=no'
assert.equal b.closed, false
@ -80,6 +82,8 @@ describe 'chromium feature', ->
b = window.open "file://#{fixtures}/pages/window-open-size.html", '', 'show=no'
describe 'window.opener', ->
@timeout 10000
url = "file://#{fixtures}/pages/window-opener.html"
w = null