|
|
@@ -10,6 +10,7 @@ describe( "/JitsiConnectionEvents members", () => {
|
|
10
|
10
|
CONNECTION_REDIRECTED,
|
|
11
|
11
|
WRONG_STATE,
|
|
12
|
12
|
DISPLAY_NAME_REQUIRED,
|
|
|
13
|
+ PROPERTIES_UPDATED,
|
|
13
|
14
|
JitsiConnectionEvents,
|
|
14
|
15
|
...others
|
|
15
|
16
|
} = exported;
|
|
|
@@ -21,6 +22,7 @@ describe( "/JitsiConnectionEvents members", () => {
|
|
21
|
22
|
expect( CONNECTION_REDIRECTED ).toBe( 'connection.redirected' );
|
|
22
|
23
|
expect( WRONG_STATE ).toBe( 'connection.wrongState' );
|
|
23
|
24
|
expect( DISPLAY_NAME_REQUIRED ).toBe( 'connection.display_name_required' );
|
|
|
25
|
+ expect( PROPERTIES_UPDATED ).toBe( 'connection.propertiesUpdated' );
|
|
24
|
26
|
|
|
25
|
27
|
expect( JitsiConnectionEvents ).toBeDefined();
|
|
26
|
28
|
|
|
|
@@ -30,6 +32,7 @@ describe( "/JitsiConnectionEvents members", () => {
|
|
30
|
32
|
expect( JitsiConnectionEvents.CONNECTION_REDIRECTED ).toBe( 'connection.redirected' );
|
|
31
|
33
|
expect( JitsiConnectionEvents.WRONG_STATE ).toBe( 'connection.wrongState' );
|
|
32
|
34
|
expect( JitsiConnectionEvents.DISPLAY_NAME_REQUIRED ).toBe( 'connection.display_name_required' );
|
|
|
35
|
+ expect( JitsiConnectionEvents.PROPERTIES_UPDATED ).toBe( 'connection.propertiesUpdated' );
|
|
33
|
36
|
} );
|
|
34
|
37
|
|
|
35
|
38
|
it( "unknown members", () => {
|