1234567891011121314151617181920212223242526272829303132333435363738394041 |
- describe('ConnectionManager', function() {
- describe('constructor', function() {
- });
- it('inherits from EventEmitter');
- describe('#_setupDataChannel', function() {
- });
- describe('#_makeOffer', function() {
- });
- describe('#_makeAnswer', function() {
- });
- describe('#_cleanup', function() {
- });
- describe('#_attachConnectionListeners', function() {
- });
- describe('#handleSDP', function() {
- });
- describe('#handleCandidate', function() {
- });
- describe('#handleLeave', function() {
- });
- describe('#close', function() {
- });
- describe('#connect', function() {
- });
- describe('#update', function() {
- });
- });
|