Browse Source

spec: Add test for webContents.beginFrameSubscription

Cheng Zhao 9 years ago
parent
commit
353cdd967a
1 changed files with 8 additions and 0 deletions
  1. 8 0
      spec/api-browser-window-spec.coffee

+ 8 - 0
spec/api-browser-window-spec.coffee

@@ -303,3 +303,11 @@ describe 'browser-window module', ->
         assert.equal url, 'https://www.github.com/'
         done()
       w.loadUrl "file://#{fixtures}/pages/will-navigate.html"
+
+  describe 'beginFrameSubscription method', ->
+    it 'subscribes frame updates', (done) ->
+      w.loadUrl "file://#{fixtures}/api/blank.html"
+      w.webContents.beginFrameSubscription (data) ->
+        assert.notEqual data.length, 0
+        w.webContents.endFrameSubscription()
+        done()