spec: Make the will-navigate test run faster

This commit is contained in:
Cheng Zhao 2015-09-18 18:57:48 +08:00
parent 353cdd967a
commit f716d47e54
2 changed files with 6 additions and 6 deletions

View file

@ -295,14 +295,14 @@ describe 'browser-window module', ->
w.minimize() w.minimize()
describe 'will-navigate event', -> describe 'will-navigate event', ->
return if isCI and process.platform is 'darwin' @timeout 10000
it 'emits when user starts a navigation', (done) -> it 'emits when user starts a navigation', (done) ->
@timeout 10000 url = "file://#{fixtures}/pages/will-navigate.html"
w.webContents.on 'will-navigate', (event, url) -> w.webContents.on 'will-navigate', (event, u) ->
event.preventDefault() event.preventDefault()
assert.equal url, 'https://www.github.com/' assert.equal u, url
done() done()
w.loadUrl "file://#{fixtures}/pages/will-navigate.html" w.loadUrl url
describe 'beginFrameSubscription method', -> describe 'beginFrameSubscription method', ->
it 'subscribes frame updates', (done) -> it 'subscribes frame updates', (done) ->

View file

@ -1,7 +1,7 @@
<html> <html>
<body> <body>
<script type="text/javascript" charset="utf-8"> <script type="text/javascript" charset="utf-8">
location = 'https://www.github.com' location.reload();
</script> </script>
</body> </body>
</html> </html>