|
@@ -0,0 +1,65 @@
|
|
|
|
+describe('DataConnection', function() {
|
|
|
|
+
|
|
|
|
+ it('constructor');
|
|
|
|
+
|
|
|
|
+ it('inherits from EventEmitter');
|
|
|
|
+
|
|
|
|
+ it('initialize');
|
|
|
|
+
|
|
|
|
+ it('_setupOffer', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_setupDataChannel', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_startPeerConnection', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_setupIce', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_configureDataChannel', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_makeOffer', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_makeAnswer', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_cleanup', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('_handleDataMessage', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('close', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('send', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('handleSDP', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('handleCandidate', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ it('handleLeave"', function() {
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+});
|