Browse Source

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

Cheng Zhao 10 years ago
parent
commit
129cdb7680
1 changed files with 6 additions and 1 deletions
  1. 6 1
      spec/webview-spec.coffee

+ 6 - 1
spec/webview-spec.coffee

@@ -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