0cd3f3cc40
The purpose of this test is to test whether the callback can be called.
7 lines
232 B
CoffeeScript
7 lines
232 B
CoffeeScript
describe 'webrtc', ->
|
|
describe 'navigator.webkitGetUserMedia', ->
|
|
it 'should call its callbacks', (done) ->
|
|
@timeout 5000
|
|
navigator.webkitGetUserMedia audio: true, video: false,
|
|
-> done()
|
|
-> done()
|