electron/spec/chromium-spec.coffee
2013-12-16 00:31:40 +08:00

15 lines
477 B
CoffeeScript

describe 'chromium feature', ->
describe 'heap snapshot', ->
it 'does not crash', ->
process.atomBinding('v8_util').takeHeapSnapshot()
describe 'sending request of http protocol urls', ->
it 'does not crash', ->
$.get 'https://api.github.com/zen'
describe 'navigator.webkitGetUserMedia', ->
it 'calls its callbacks', (done) ->
@timeout 5000
navigator.webkitGetUserMedia audio: true, video: false,
-> done()
-> done()