|
@@ -8,7 +8,6 @@ describe( "/JitsiConnectionEvents members", () => {
|
8
|
8
|
CONNECTION_ESTABLISHED,
|
9
|
9
|
CONNECTION_FAILED,
|
10
|
10
|
CONNECTION_REDIRECTED,
|
11
|
|
- WRONG_STATE,
|
12
|
11
|
DISPLAY_NAME_REQUIRED,
|
13
|
12
|
PROPERTIES_UPDATED,
|
14
|
13
|
JitsiConnectionEvents,
|
|
@@ -20,7 +19,6 @@ describe( "/JitsiConnectionEvents members", () => {
|
20
|
19
|
expect( CONNECTION_ESTABLISHED ).toBe( 'connection.connectionEstablished' );
|
21
|
20
|
expect( CONNECTION_FAILED ).toBe( 'connection.connectionFailed' );
|
22
|
21
|
expect( CONNECTION_REDIRECTED ).toBe( 'connection.redirected' );
|
23
|
|
- expect( WRONG_STATE ).toBe( 'connection.wrongState' );
|
24
|
22
|
expect( DISPLAY_NAME_REQUIRED ).toBe( 'connection.display_name_required' );
|
25
|
23
|
expect( PROPERTIES_UPDATED ).toBe( 'connection.propertiesUpdated' );
|
26
|
24
|
|
|
@@ -30,7 +28,6 @@ describe( "/JitsiConnectionEvents members", () => {
|
30
|
28
|
expect( JitsiConnectionEvents.CONNECTION_ESTABLISHED ).toBe( 'connection.connectionEstablished' );
|
31
|
29
|
expect( JitsiConnectionEvents.CONNECTION_FAILED ).toBe( 'connection.connectionFailed' );
|
32
|
30
|
expect( JitsiConnectionEvents.CONNECTION_REDIRECTED ).toBe( 'connection.redirected' );
|
33
|
|
- expect( JitsiConnectionEvents.WRONG_STATE ).toBe( 'connection.wrongState' );
|
34
|
31
|
expect( JitsiConnectionEvents.DISPLAY_NAME_REQUIRED ).toBe( 'connection.display_name_required' );
|
35
|
32
|
expect( JitsiConnectionEvents.PROPERTIES_UPDATED ).toBe( 'connection.propertiesUpdated' );
|
36
|
33
|
} );
|