spec,win: Fix page-favicon-updated event spec

This commit is contained in:
Cheng Zhao 2015-04-29 17:31:56 +08:00
parent 8d3404d26c
commit 129cdb7680

View file

@ -169,7 +169,12 @@ describe '<webview> tag', ->
it 'emits when favicon urls are received', (done) ->
webview.addEventListener 'page-favicon-updated', (e) ->
assert.equal e.favicons.length, 2
assert.equal e.favicons[0], 'file:///favicon.png'
url =
if process.platform is 'win32'
'file:///C:/favicon.png'
else
'file:///favicon.png'
assert.equal e.favicons[0], url
done()
webview.src = "file://#{fixtures}/pages/a.html"
document.body.appendChild webview